diff --git a/lisp/mitch-packages.el b/lisp/mitch-packages.el index 69e2e7a..e51061b 100644 --- a/lisp/mitch-packages.el +++ b/lisp/mitch-packages.el @@ -590,6 +590,9 @@ See https://emacs.stackexchange.com/questions/2538/how-to-define-additional-mode (defun insert-zws () (interactive) (insert 8203)) ; this is a Zero Width Space. It makes things confusing. + (defun insert-ï () + (interactive) + (insert 239)) ; this is a lowercase I with an umlaut. Used for the word `naiive'. :hook (org-mode . turn-off-line-numbers) (org-mode . org-vw-mode) @@ -599,7 +602,8 @@ See https://emacs.stackexchange.com/questions/2538/how-to-define-additional-mode :keymaps 'org-mode-map "`" (general-key-dispatch 'self-insert-command :timeout 0.1 - "SPC" 'insert-zws)) + "SPC" 'insert-zws + "i" 'insert-ï)) (general-define-key :states '(normal visual insert) :keymaps 'org-mode-map