summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-02-09 22:44:11 -0600
committerCase Duckworth2021-02-09 22:44:11 -0600
commit4c6f08ec02fcd2e7cd5c7dc59d2c33a7e4ef4d0b (patch)
tree5672a85f75c8bb5d63513af6fd57f8a984cab835 /config.org
parentMerge branch 'main' of tildegit.org:acdw/emacs (diff)
downloademacs-4c6f08ec02fcd2e7cd5c7dc59d2c33a7e4ef4d0b.tar.gz
emacs-4c6f08ec02fcd2e7cd5c7dc59d2c33a7e4ef4d0b.zip
Merge branch 'main' of tildegit.org:acdw/emacs
Diffstat (limited to 'config.org')
-rw-r--r--config.org16
1 files changed, 15 insertions, 1 deletions
diff --git a/config.org b/config.org index dcf05ec..aa75459 100644 --- a/config.org +++ b/config.org
@@ -1551,7 +1551,9 @@ already commented. That's it.
1551 1551
1552* Writing 1552* Writing
1553 1553
1554** COMMENT Word count :package: 1554** Word count :package:
1555
1556*** WC Mode
1555 1557
1556I'm just going to comment this out for right now because I honestly 1558I'm just going to comment this out for right now because I honestly
1557don't know if it's that useful. 1559don't know if it's that useful.
@@ -1571,8 +1573,20 @@ don't know if it's that useful.
1571 (add-hook 'text-mode-hook #'hook--wc-mode-no-keybinds) 1573 (add-hook 'text-mode-hook #'hook--wc-mode-no-keybinds)
1572#+end_src 1574#+end_src
1573 1575
1576*** Keybinding :crux:
1577
1578I just found out that =M-== counts the words in a region. That's great, but I
1579often want to count the words in the whole buffer. Enter
1580=crux-with-region-or-buffer=. I could change the binding. .... but I don't want to.
1581
1582#+begin_src emacs-lisp :noweb-ref bindings
1583 (crux-with-region-or-buffer count-words-region)
1584#+end_src
1585
1574** Spell checking 1586** Spell checking
1575 1587
1588*** Settings
1589
1576Let's use =hunspell=. 1590Let's use =hunspell=.
1577 1591
1578#+begin_src emacs-lisp :noweb-ref packages 1592#+begin_src emacs-lisp :noweb-ref packages