In Org-mode I can get headlines wrap with proper indentation by using org-indent-mode. How can I do the same for lists, that is, how can I make it so that lists in Org-mode wrap with proper indentation?
If I insert
* Very very very very very very very very very very very very very very very very very very very long line
- Very very very very very very very very very very very very very very very very very very very long line
into an Org-mode buffer with org-indent-mode I get the following:
* Very very very very very very very very very very very very very very very
very very very very long line
- Very very very very very very very very very very very very very very very
very very very very long line.
Note that the second line of the list (the one starting with -) is not properly indented because it should align with the first letter of the start of the list. What I would expect is the following:
* Very very very very very very very very very very very very very very very
very very very very long line
- Very very very very very very very very very very very very very very very
very very very very long line.
I am running Org-mode 7.6 in GNU Emacs 23.3.1.
This now seems to be the standard in
Org-mode version 7.8.03. The news for the release of 7.8 stated thatorg-ident.elhad been refactored for some improvements when used with visual-line-mode (and should be faster).As a test I ran
emacs -qand usedOrg-mode version 7.7that comes with emacs24. It showed the undesired behaviour. Adding my local copy of 7.8 to my load-path and reloading org then refreshing the bufferC-c C-con:added the extra spaces on additonal lines so that indentation matched what you expect.
Upgrading to 7.8.03 (or to current git-head) will provide you with the desired functionality.
Test results
Org-Mode 7.7
Org-Mode 7.8.03