diff options
| author | Daniel <[email protected]> | 2024-08-31 11:23:00 -0400 |
|---|---|---|
| committer | Daniel <[email protected]> | 2024-08-31 11:23:00 -0400 |
| commit | 5c89daa268d094a1065a69dbe8633c9a1f8dadb8 (patch) | |
| tree | e97239ef0d882139684bb26d66f9e9c2c59ad728 | |
| parent | 820a8959560465a4d4f7c4360a14e1b21a15c7fd (diff) | |
captain should run in text mode
| -rw-r--r-- | bard-emacs-modules/bard-emacs-writing.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bard-emacs-modules/bard-emacs-writing.el b/bard-emacs-modules/bard-emacs-writing.el index 756a291..ed88245 100644 --- a/bard-emacs-modules/bard-emacs-writing.el +++ b/bard-emacs-modules/bard-emacs-writing.el @@ -35,7 +35,12 @@ ;; Captain capitalization (use-package captain - :ensure t) + :ensure t + :hook + (text-mode . captain-mode) + :bind + ("M-u" . captain-capitalize-word) + ("M-S-u" . captain-capitalize-sentence)) ;; snippets |
