diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-21 12:35:11 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-21 12:35:11 +0200 |
commit | 9df13dacc53a97cbca0377f350a1f5ea2251c9d6 (patch) | |
tree | 4525293dc32cd1fdee238bb1d4ebf754bf5b82a4 /.config/emacs/modules/mm-editing.el | |
parent | 8a48f4847bad367df449cc6568b69bbcb14b41ae (diff) |
emacs: Add :defer 2 to multiple-cursors
Diffstat (limited to '.config/emacs/modules/mm-editing.el')
-rw-r--r-- | .config/emacs/modules/mm-editing.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el index 04f671e..9c89d0f 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -143,6 +143,7 @@ region are marked, otherwise all matches in the buffer are marked." (use-package multiple-cursors :ensure t + :defer 2 :bind (("C->" . #'mc/mark-next-like-this) ("C-<" . #'mc/mark-previous-like-this) ("C-M-<" . #'mc/mark-all-like-this-dwim) |