org: Add ii character for the word naiive and nothing else.

This commit is contained in:
MitchMarq42 2023-01-11 07:53:21 -09:00
parent 264815d056
commit 41313be8a6

View File

@ -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