diff options
author | Case Duckworth | 2021-08-11 22:05:02 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-11 22:05:02 -0500 |
commit | eabc0680d81c1f30a61acf15da4bdeb07eb5f1f7 (patch) | |
tree | 80ed2208d7412f3ff1b4763b4e6375a091b24bc2 | |
parent | Recenter cursor on page after navigating pages (diff) | |
download | emacs-eabc0680d81c1f30a61acf15da4bdeb07eb5f1f7.tar.gz emacs-eabc0680d81c1f30a61acf15da4bdeb07eb5f1f7.zip |
Change {capitalize,upcase,downcase}-word to {}-dwim
-rw-r--r-- | init.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/init.el b/init.el index 6938282..bb74a1d 100644 --- a/init.el +++ b/init.el | |||
@@ -833,7 +833,9 @@ like a dumbass." | |||
833 | (:global "M-=" count-words | 833 | (:global "M-=" count-words |
834 | "C-w" kill-region-or-backward-word | 834 | "C-w" kill-region-or-backward-word |
835 | "<help> h" nil ; HELLO takes a long time to load on Windows | 835 | "<help> h" nil ; HELLO takes a long time to load on Windows |
836 | ) | 836 | "M-c" capitalize-dwim |
837 | "M-u" upcase-dwim | ||
838 | "M-l" downcase-dwim) | ||
837 | 839 | ||
838 | ;; (when (display-graphic-p) | 840 | ;; (when (display-graphic-p) |
839 | ;; (:global "<escape>" keyboard-escape-quit)) | 841 | ;; (:global "<escape>" keyboard-escape-quit)) |