Raoul Comninos <revr...@mweb.co.za> writes: > I noticed a change in org since I updated to the latest version when it > comes to automatic indentation. I prefer to turn this off globally, > including for lists. I have tinkered with various settings but have had > no luck so far.
ORG-NEWS provides these hints: > To get the previous behaviour back, disable ~electric-indent-mode~ > explicitly: > > #+begin_src emacs-lisp > (add-hook 'org-mode-hook (lambda () (electric-indent-local-mode -1))) > #+end_src > > Alternatively, if you wish to keep =RET= as the "smart-return" key, > but dislike Org's default indentation of sections, you may prefer to > customize ~org-adapt-indentation~ to either =nil= or ='headline-data=. Normally I would recommend customizing org-adapt-indentation over disabing electric-indent-local-mode, but if you'd rather move back to column 0 when hitting RET in a list, the hook is probably the way to go.