Remove the C-x o binding to burn M-o in muscle memory

master
Jacopo De Simoi 6 years ago
parent 2de6a5b5e3
commit 691f4d94b5
  1. 6
      .gitmodules
  2. 1
      biblio.el
  3. 1
      emacs-libvterm
  4. 7
      global.org

6
.gitmodules vendored

@ -88,3 +88,9 @@
[submodule "flyspell-lazy"]
path = flyspell-lazy
url = https://github.com/rolandwalker/flyspell-lazy
[submodule "emacs-libvterm"]
path = emacs-libvterm
url = https://github.com/akermu/emacs-libvterm.git
[submodule "biblio.el"]
path = biblio.el
url = https://github.com/cpitclaudel/biblio.el

@ -0,0 +1 @@
Subproject commit eb9baf1d2bf6a073d24ccb717025baa693e98f3e

@ -0,0 +1 @@
Subproject commit 3decc51156e1b022955dc1333c3e358e20d94228

@ -338,13 +338,16 @@
("<S-f14>" . just-activate-mark)))
#+END_SRC
** Global bindings
Remove some supremely annoying bindings
Remove some supremely annoying bindings; plus, force me to use
ace-window by removing the ~C-x o~ binding
#+BEGIN_SRC emacs-lisp
(mapcar
(lambda (ch)
(global-unset-key (kbd ch)))
'("C-z" "C-x f" "<M-f4>" "C-M-u" "C-M-d"))
'("C-z" "C-x f" "<M-f4>" "C-M-u" "C-M-d" "C-x o"))
#+END_SRC
Change {up,down}-list
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "C-M-i") 'down-list) ;; -i stands for /in/

Loading…
Cancel
Save