diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-03-08 20:31:11 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-03-08 20:31:11 +0100 |
commit | f0c07760608258f8de50762bb33d05ef4f268989 (patch) | |
tree | d34c3cf14128a06bd9c01ff750cce2236b82335e | |
parent | e507b2146b5f864c402cfda721e153bcb5f3b84a (diff) |
emacs: Use ‘with-eval-after-load’
-rw-r--r-- | .config/emacs/modules/mm-editing.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el index c6c8532..dda5352 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -222,8 +222,8 @@ and *Messages* buffer. This forces that to not happen." helpful-symbol helpful-variable)) (add-to-list 'mc/cmds-to-run-once command)))) - :config - (keymap-unset mc/keymap "<return>" :remove)) + (with-eval-after-load 'multiple-cursors-core + (keymap-unset mc/keymap "<return>" :remove))) ;;; Increment Numbers |