From: Don Armstrong Date: Tue, 14 Jul 2020 18:51:06 +0000 (-0700) Subject: home/end should always go to beginining/end of line X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6a8349e95291756ef429245419cc2d0273497fb3;p=lib.git home/end should always go to beginining/end of line --- diff --git a/emacs_el/configuration/don-configuration.org b/emacs_el/configuration/don-configuration.org index 9aeb4e7..b9f82ef 100644 --- a/emacs_el/configuration/don-configuration.org +++ b/emacs_el/configuration/don-configuration.org @@ -2461,6 +2461,11 @@ same directory as the org-buffer and insert a link to this file." ) #+END_SRC * Keybindings +** Home/End Begining/End of line +#+BEGIN_SRC emacs-lisp + (global-set-key [home] 'move-beginning-of-line) + (global-set-key [end] 'move-end-of-line) +#+END_SRC ** Goto line #+BEGIN_SRC emacs-lisp (global-unset-key "\M-g")