nitpicky naming adjustment

This commit is contained in:
Gered 2024-12-03 21:34:58 -05:00
parent c8811826f7
commit 468aab71b7

View file

@ -11,7 +11,7 @@
;; - when the completions buffer is selected, close it
;; - if the minibuffer is open but not focused, close it
;; - otherwise, run keyboard-quit
(defun prot/keyboard-quit-dwim ()
(defun gered/keyboard-quit-dwim ()
(interactive)
(cond
((region-active-p)
@ -23,7 +23,7 @@
(t
(keyboard-quit))))
(define-key global-map (kbd "C-g") #'prot/keyboard-quit-dwim)
(define-key global-map (kbd "C-g") #'gered/keyboard-quit-dwim)
(global-set-key (kbd "C-x C-S-E") #'eval-buffer)