diff options
Diffstat (limited to 'thogai.el')
-rw-r--r-- | thogai.el | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -268,6 +268,11 @@ External callers should always pass nil as the value." (thogai-insert-literal (string-remove-prefix "{&" (string-remove-suffix "}" translation))) (setq thogai-glue t)) + ;; Period, question mark or exclamation mark + ((or "{.}" "{?}" "{!}") + (insert (string-remove-prefix "{" (string-remove-suffix "}" translation))) + (insert " ") + (setq thogai-capitalize-next-word t)) ;; Capitalize next word. ("{-|}" (setq thogai-capitalize-next-word t)) |