From 8daa4b875b911a2b862dfb004f27914509b7dcf9 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 7 Nov 2016 17:42:45 -0800 Subject: [PATCH] [Emacs] Use end-of-visual-line in org-mode The default behavior of org-mode-end-of-line has changed so that we never go past folded ellipses which is super annoying. --- dotfiles/emacs.d/README.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index c0cbbd83..e8ed5d1e 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -2885,6 +2885,8 @@ Intero seems to be causing hangs, so it has been disabled #+BEGIN_SRC emacs-lisp (use-package org :ensure org-plus-contrib + :bind (:map org-mode-map + (("C-e" . end-of-visual-line))) :preface (progn ;; XXX: These should probably be moved to config, right?