diff options
| author | 2022-01-06 09:16:47 -0800 | |
|---|---|---|
| committer | 2022-01-06 09:16:47 -0800 | |
| commit | a62f26073d178a0104a0f11e42680e20f40d5f42 (patch) | |
| tree | 3c779cfcd6538d858950904c0e9f82ed404db734 | |
| parent | 8a67063ae42e0d0e353a411d34a3a009032b4e5c (diff) | |
| download | emacs-config-a62f26073d178a0104a0f11e42680e20f40d5f42.tar.gz emacs-config-a62f26073d178a0104a0f11e42680e20f40d5f42.zip | |
[oni-core] Disable the ‘C-x o’ keybinding
I'm so used to using it that I keep forgetting to use ‘M-o’ for ‘ace-window’
instead. By disabling this keybinding I can train myself to use ‘ace-window’.
| -rw-r--r-- | oni-core.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/oni-core.el b/oni-core.el index 0768e91..514730e 100644 --- a/oni-core.el +++ b/oni-core.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse <tom@ryuslash.org> ;; Keywords: local -;; Version: 2021.1205.144437 +;; Version: 2022.0106.091634 ;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard mixed-pitch ace-window) ;; This program is free software; you can redistribute it and/or modify @@ -220,6 +220,7 @@ _s_: String list" (global-set-key (kbd "C-<right>") 'winner-redo) (global-set-key (kbd "M-o") 'ace-window) +(global-unset-key (kbd "C-x o")) (unless oni-core--recentf-idle-timer (setq oni-core--recentf-idle-timer |
