Update `org-space-key` to activate after more types of punctuation

This commit is contained in:
Gergely Polonkai 2016-10-22 15:09:51 +02:00
parent 5ef2a98858
commit 42b437055b
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
"Insert two spaces after a period."
(interactive "p")
(when (looking-back "\\.")
(when (looking-back "[.!?…]")
(call-interactively 'self-insert-command arg))
(call-interactively 'self-insert-command arg))