summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authornoa2025-02-22 03:36:10 +0800
committernoa2025-02-22 03:36:10 +0800
commitdc95c8148e3c7d23cbfcc9fb5e24dc52adbb2114 (patch)
tree69a24735b971b45ab03feb7bf7b68ad53f67edc6 /emacs
parent88cecb89ef9f44b05e21fdc5806a0097632c6a7c (diff)
Quality of life updates for word case management
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el5
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.