diff options
author | noa | 2025-02-22 03:36:10 +0800 |
---|---|---|
committer | noa | 2025-02-22 03:36:10 +0800 |
commit | dc95c8148e3c7d23cbfcc9fb5e24dc52adbb2114 (patch) | |
tree | 69a24735b971b45ab03feb7bf7b68ad53f67edc6 | |
parent | 88cecb89ef9f44b05e21fdc5806a0097632c6a7c (diff) |
Quality of life updates for word case management
-rw-r--r-- | emacs/init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index eb0b283..62c2738 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -262,6 +262,11 @@ (fill-paragraph nil))) (global-set-key (kbd "M-Q") #'unfill-paragraph) +(use-package simple + :bind (([remap capitalize-word] . capitalize-dwim) + ([remap downcase-word] . downcase-dwim) + ([remap upcase-word] . upcase-dwim))) + ;;; Reading mail ;; I keep coming back to rmail, despite its many, many warts. |