diff options
Diffstat (limited to 'emacs-config.org')
| -rw-r--r-- | emacs-config.org | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index bc2e9b8..3b04f26 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -1497,6 +1497,10 @@ Buffer actions. Set meta-key quick actions to mirror =C-x DIGIT= bindings, therefore reducing the need for additional keypresses. These bindings override their corresponding numerical argument, however these can be can be alternatively called with =C-u DIGIT= or =C-DIGIT=. #+begin_src elisp + (keymap-set +global-keys-map "M--" (lambda () + "Move window anti-clockwise." + (interactive) + (other-window -1))) (keymap-set +global-keys-map "M-0" #'delete-window) (keymap-set +global-keys-map "M-1" #'delete-other-windows) (keymap-set +global-keys-map "M-2" (lambda () |
