summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-11-24 18:52:38 -0600
committerCase Duckworth2020-11-24 18:52:38 -0600
commit72ef053d8904294b34b14bacc055c9d93952329f (patch)
treee05299e76d49443371c57e56921885580f956ee6 /config.org
parentAdd so-long-mode (diff)
downloademacs-72ef053d8904294b34b14bacc055c9d93952329f.tar.gz
emacs-72ef053d8904294b34b14bacc055c9d93952329f.zip
Change binding for just-one-space to cycle-space
Diffstat (limited to 'config.org')
-rw-r--r--config.org10
1 files changed, 10 insertions, 0 deletions
diff --git a/config.org b/config.org index 9e78a67..f9da6ba 100644 --- a/config.org +++ b/config.org
@@ -491,6 +491,16 @@ See [[https://emacs.stackexchange.com/questions/12351/when-to-call-find-font-if-
491 (global-so-long-mode)) 491 (global-so-long-mode))
492#+end_src 492#+end_src
493 493
494*** Change =just-one-space= to =cycle-space=
495
496#+begin_src emacs-lisp
497 (defun acdw/cycle-spacing-1 ()
498 (interactive)
499 (cycle-spacing -1))
500
501 (bind-key [remap just-one-space] #'acdw/cycle-spacing-1)
502#+end_src
503
494* Persistence 504* Persistence
495 505
496** Auto-saves 506** Auto-saves