Timothy writes: > With regards to triggering M-q in the edit buffer, > considering that different modes can have different fill commands, might > you have any suggestions on what command this could be replaced by? I think simply calling `fill-paragraph' (bound to "M-q" by default) should do. From it's docstring, it should take care about mode-specific fill functions: >> If fill-paragraph-function is non-nil, we call it (passing our >> argument to it), and if it returns non-nil, we simply return its value. Also, the docstring says that fill-paragraph-function is expected to return non-nil when the filling is done there. For some reason, it is not done in org-fill-paragraph. The attached is patch solving the "M-q" problem and making sure the org-fill-paragraph returns non-nil. Beware that I am not very familiar with fill.el. It would be great if someone more knowledgeable take a look at the patch. Best, Ihor