diff options
| author | Blake Romero <blake@blkrom.com> | 2025-07-09 19:51:07 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-07-09 19:51:07 +0100 |
| commit | d13d468f7988ec8ed7b07ad3888df8995d6cb7c8 (patch) | |
| tree | 0ec8ac61c81b0cdb8aeecd3cc2753f812b83f0d5 /emacs-config.org | |
| parent | 4738756596a45b8a41efeed6435cc0d8aa8ceb9e (diff) | |
Replace text manipulation functions with DWIM alternatives
Diffstat (limited to 'emacs-config.org')
| -rw-r--r-- | emacs-config.org | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index 8438fd4..47d793c 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -90,3 +90,10 @@ Window actions. (keymap-global-set "M-O" #'window-swap-states) (keymap-global-set "M-o" #'other-window) #+end_src + +Improve region text manipulation. +#+begin_src elisp + (keymap-global-set "M-c" #'capitalize-dwim) + (keymap-global-set "M-l" #'downcase-dwim) + (keymap-global-set "M-u" #'upcase-dwim) +#+end_src |
