org: Add ii character for the word naiive and nothing else.
This commit is contained in:
parent
264815d056
commit
41313be8a6
@ -590,6 +590,9 @@ See https://emacs.stackexchange.com/questions/2538/how-to-define-additional-mode
|
|||||||
(defun insert-zws ()
|
(defun insert-zws ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(insert 8203)) ; this is a Zero Width Space. It makes things confusing.
|
(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
|
:hook
|
||||||
(org-mode . turn-off-line-numbers)
|
(org-mode . turn-off-line-numbers)
|
||||||
(org-mode . org-vw-mode)
|
(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
|
:keymaps 'org-mode-map
|
||||||
"`" (general-key-dispatch 'self-insert-command
|
"`" (general-key-dispatch 'self-insert-command
|
||||||
:timeout 0.1
|
:timeout 0.1
|
||||||
"SPC" 'insert-zws))
|
"SPC" 'insert-zws
|
||||||
|
"i" 'insert-ï))
|
||||||
(general-define-key
|
(general-define-key
|
||||||
:states '(normal visual insert)
|
:states '(normal visual insert)
|
||||||
:keymaps 'org-mode-map
|
:keymaps 'org-mode-map
|
||||||
|
Loading…
Reference in New Issue
Block a user