Hi all, There is a major issue with org-indent-mode under org-mode 7.7 (downloaded today with Emacs PPM, dated 2011-10-18) and Emacs 23.2.
When org-startup-indented is set to "t", on opening any .org file the cursor immediately jumps to the end of file, and it is impossible to move it from there. Same happens if it is set to nil and I turn org-indent- mode on manually. It does seem to work under Emacs 23.3 though. A sample .emacs file (in its entirety) is below: (setq load-path (cons "~/elisp" load-path)) (require 'package) (package-initialize) ; causes major trouble... Investigate! (setq org-startup-indented t) --aj