diff options
-rw-r--r-- | Emacs/.config/emacs/config.org | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 8b61830..6a659c7 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -290,7 +290,10 @@ moment), bind to general some basic binds. :straight nil :general (leader - "cc" #'compile)) + "cc" #'compile + "cC" (proc (interactive) + (let ((current-prefix-arg '(1))) + (call-interactively #'compile))))) (use-package imenu :straight nil |