On Mar 18, 2014, at 18:35, "Michael Weylandt" <michael.weyla...@gmail.com> wrote: > > On Mar 8, 2014, at 7:12, Alan Schmitt <alan.schm...@polytechnique.org> wrote: >> >> I've continued looking into this, and it seems that what I want is use >> `fill-nobreak-predicate'. This is what I ended up doing: >> >> #+begin_src emacs-lisp >> (add-hook 'org-mode-hook >> (lambda () >> (add-hook 'fill-nobreak-predicate 'org-in-verbatim-emphasis))) >> #+end_src > > Is there an analogue like org-in-inline-src-p? I find the auto-fill breaks > inline (src_python{.......})
There doesn't appear to be a native org version, but I've used (defun org-in-inline-src-p () (org-in-regexp org-babel-inline-src-block-regexp)) (add-hook 'org-mode-hook (lambda () (add-hook 'fill-nobreak-predicate 'org-in-inline-src-p))) And it seems to give a better auto-fill experience. Michael