From 42b437055bd096e091cba18a7cb6683c4fdac695 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Sat, 22 Oct 2016 15:09:51 +0200 Subject: [PATCH] Update `org-space-key` to activate after more types of punctuation --- lisp/text-manip.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/text-manip.el b/lisp/text-manip.el index 06e6291..b6e4dff 100644 --- a/lisp/text-manip.el +++ b/lisp/text-manip.el @@ -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))