diff --git a/emacs/init.org b/emacs/init.org index 9d5ccf7..4e1199e 100644 --- a/emacs/init.org +++ b/emacs/init.org @@ -1429,6 +1429,18 @@ (global-set-key (kbd "C-c d s") 'desktop-save) #+END_SRC +* Improve eol and bol navigation in org-mode :org:navigation: + + Setting this variable to =t= will cause =C-a= to move to the beginning + of the headline or list item text the first time, and the actual + beginning of the line with another =C-a= and it will cause =C-e= to + move to the end of the text of the headline and another to the end + of any possible tags. + + #+BEGIN_SRC emacs-lisp + (setq org-special-ctrl-a/e t) + #+END_SRC + * All the rest This still needs to be sorted out and documented, haven't had time