Create function org-space-key and bind it to SPC in org-mode
All it does is inserting the space character twice after a period.
This commit is contained in:
7
lisp/text-manip.el
Normal file
7
lisp/text-manip.el
Normal file
@@ -0,0 +1,7 @@
|
||||
(defun org-space-key (&optional arg)
|
||||
"Insert two spaces after a period."
|
||||
(interactive "p")
|
||||
|
||||
(when (looking-back "\\.")
|
||||
(call-interactively 'self-insert-command arg))
|
||||
(call-interactively 'self-insert-command arg))
|
Reference in New Issue
Block a user