diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-04-03 03:56:18 +0200 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-04-03 03:56:18 +0200 |
| commit | ab4cc4dfd60b6df59d43d12e50764a405cf98bb4 (patch) | |
| tree | 96d38ad7cd96bf29ca0c211664d2eff0c1467707 /.config/emacs/modules | |
| parent | ff08339904ac4cb49ece99a169e61eaa26ac13f7 (diff) | |
emacs: Fix repeat bindings
Diffstat (limited to '.config/emacs/modules')
| -rw-r--r-- | .config/emacs/modules/mm-keybindings.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/emacs/modules/mm-keybindings.el b/.config/emacs/modules/mm-keybindings.el index 94782ab..c0f4957 100644 --- a/.config/emacs/modules/mm-keybindings.el +++ b/.config/emacs/modules/mm-keybindings.el @@ -150,8 +150,8 @@ COMMANDS the first command is remapped to the second command." (with-eval-after-load 'increment (mm-keybindings-keymap-set-repeating global-map - "d" #'decrement-number-at-point - "i" #'increment-number-at-point)) + "C-x" #'decrement-number-at-point + "C-a" #'increment-number-at-point)) ;;; Other Bindings |