diff options
author | noa | 2025-02-22 03:01:18 +0800 |
---|---|---|
committer | noa | 2025-02-22 03:01:18 +0800 |
commit | c0a7ee7570d22520a9fd2f156a57bf1eabe785e5 (patch) | |
tree | 47a26c3983cfd4dd0f3d8c2fc655629fee510237 /emacs/init.el | |
parent | 38ef91ca123fac2ef8179fbcd0dfe1e11add4422 (diff) |
Don't allow single spaced sentences.
I mostly deal with text i've written myself, and i double space. I am more frequently frustrated by full stops within sentences being interpreted as a sentence boundary than i am by navigating sentences written by other people.
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/emacs/init.el b/emacs/init.el index 6c1fb61..4ee1906 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -300,13 +300,6 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." (define-abbrev global-abbrev-table abbrev word))) (advice-add 'jinx--correct-replace :before #'jinx--add-to-abbrev) -;; Make sentence navigation commands work for people who are wrong -;; NOTE: paragraphs does not provide itself -(use-package paragraphs - :disabled t - :custom - (sentence-end-double-space nil)) - ;; Unfill commands (defun unfill-paragraph () "Takes a multi-line paragraph and makes it into a single line of text." |