diff options
author | JSDurand <mmemmew@gmail.com> | 2021-06-05 21:21:53 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-06-05 21:21:53 +0800 |
commit | 05de50f4f1e1aa0124682fc81b1819a6e973b4ff (patch) | |
tree | 55ac7aa36caf4c57c702045be2fb69ec38a50bc0 | |
parent | a94926fb2f18431faf38b21432d3b93c9d2a1d1d (diff) |
basic: sentence-end-double-space
* basic.el (sentence-end-double-space): Two spaces after the end of
sentences can distinguish between the end of a sentence and words that
end with a period, such as abbreviations. So I prefer to put two
spaces after the end of sentences now.
-rw-r--r-- | basic.el | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -10,6 +10,11 @@ (setq save-interprogram-paste-before-kill t) +;;; Two spaces after the end of sentences mark the boundaries of +;;; sentences clearer. + +(setq sentence-end-double-space t) + ;;; Setting the direction of the text can speed things up. (set-default 'bidi-paragraph-direction 'left-to-right) |