ENH remove annoying marker/point exchange binding

This commit is contained in:
Nathan Dwarshuis 2020-08-07 16:29:09 -04:00
parent e0c693ab97
commit 346bf421c5
1 changed files with 5 additions and 0 deletions

View File

@ -4574,3 +4574,8 @@ The function keys are nice because they are almost (not always) free in every mo
("L" #'shrink-window-horizontally) ("L" #'shrink-window-horizontally)
("=" #'balance-windows :exit t)) ("=" #'balance-windows :exit t))
#+END_SRC #+END_SRC
*** other
#+BEGIN_SRC emacs-lisp
;; exchange point and marker (I never saw the use for this)
(global-unset-key (kbd "C-x C-x"))
#+END_SRC