Finally fixed sentence movement

This commit is contained in:
Joseph Ferano 2023-01-10 21:13:45 +07:00
parent bca8e2eaf6
commit 691fb21335

View File

@ -355,6 +355,15 @@ Emacs is an great operating system, if only it had a good text editor...
(global-set-key (kbd "M-o") #'joe/insert-line-below)
(global-set-key (kbd "M-O") #'joe/insert-line-above)
#+end_src
For the longest time I had no idea why the ~(~ and ~)~ vim motions for sentences
weren't working, until I randomly saw this in someone's init.el
#+begin_src emacs-lisp
(setq sentence-end-double-space nil)
#+end_src
#+end_src
*** Hydra
#+begin_src emacs-lisp