diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-04-01 07:34:46 +0200 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-04-01 07:34:46 +0200 |
| commit | a426726976e2199d7ca428f03d1b46ce3891309d (patch) | |
| tree | ce7619068455492c111e53090063871815e5152c /.config | |
| parent | 4fafe2eb4685a72a39095479d7984c003b580d59 (diff) | |
emacs: Fix hook names
Diffstat (limited to '.config')
| -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 e15e739..24aa7ea 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -157,8 +157,8 @@ those should be listed in `mm-editing-indentation-settings'." (when-let ((ts-mode (mm-mode-to-ts-mode mode)) ((fboundp ts-mode))) (add-hook (mm-mode-to-hook ts-mode) #'mm-newcomment-c-config))) - (add-hook 'mhtml-mode #'mm-newcomment-html-config) - (add-hook 'rust-ts-mode #'mm-newcomment-rust-config)) + (add-hook 'mhtml-mode-hook #'mm-newcomment-html-config) + (add-hook 'rust-ts-mode-hook #'mm-newcomment-rust-config)) ;;; Multiple Cursors |