Rename flip-case-region to flip-region-case

It just makes more sense lol
This commit is contained in:
Camden Dixie O'Brien 2022-10-30 10:26:05 +00:00
parent 13a412d81f
commit 2d9607f5cb

View File

@ -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