diff options
| author | bd <bdunahu@operationnull.com> | 2025-12-13 23:37:23 -0500 |
|---|---|---|
| committer | bd <bdunahu@operationnull.com> | 2025-12-13 23:37:23 -0500 |
| commit | cd31c110116f6337f87b91176e8dcde278c408e2 (patch) | |
| tree | bd924079ea79d347ac1fd9cd48a47fe257b4536f /.config/emacs/init.el | |
| parent | 3d59b9e0275bf7368e1ae095a1e667c7798b78fb (diff) | |
emacs: enable upcase/downcase region
Diffstat (limited to '.config/emacs/init.el')
| -rw-r--r-- | .config/emacs/init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 8deff07..23070b5 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -23,6 +23,11 @@ (keymap-global-set "C-x C-b" #'ibuffer) (keymap-global-set "C-c SPC" #'pop-to-mark-command) +(mapc + (lambda (command) + (put command 'disabled nil)) + '(upcase-region downcase-region)) + (setopt warning-minimum-level :error inhibit-startup-message t |
