From 2d9607f5cbccc8ea8dc4f459af5558aaf5d8fe8e Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Sun, 30 Oct 2022 10:26:05 +0000 Subject: [PATCH] Rename flip-case-region to flip-region-case It just makes more sense lol --- config.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.org b/config.org index 638dc43..1bc6cee 100644 --- a/config.org +++ b/config.org @@ -1379,7 +1379,7 @@ Finally, this can then be applied to the region, if it's active: #+begin_src emacs-lisp - (defun flip-case-region () + (defun flip-region-case () (interactive) (when (region-active-p) (let* ((start (region-beginning)) @@ -1392,5 +1392,5 @@ And of course, I need a keybinding for that: #+begin_src emacs-lisp - (global-set-key (kbd "C-~") 'flip-case-region) + (global-set-key (kbd "C-~") 'flip-region-case) #+end_src