summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authornoa2025-02-22 03:01:18 +0800
committernoa2025-02-22 03:01:18 +0800
commitc0a7ee7570d22520a9fd2f156a57bf1eabe785e5 (patch)
tree47a26c3983cfd4dd0f3d8c2fc655629fee510237 /emacs
parent38ef91ca123fac2ef8179fbcd0dfe1e11add4422 (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')
-rw-r--r--emacs/init.el7
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."