From 468aab71b71c00ee8bbadc8e52a6725afcf210fb Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 3 Dec 2024 21:34:58 -0500 Subject: [PATCH] nitpicky naming adjustment --- emacs.d/keybinds.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs.d/keybinds.el b/emacs.d/keybinds.el index cdc3833..ceabdf0 100644 --- a/emacs.d/keybinds.el +++ b/emacs.d/keybinds.el @@ -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)