aboutsummaryrefslogtreecommitdiff
path: root/Emacs
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-04-14 14:34:56 +0630
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-04-14 14:34:56 +0630
commitb31efd7b2c4fd495d188650a1761a673ec74c97e (patch)
tree96ef93afe5962cb099c292f04cdc2e05aa7f5d42 /Emacs
parentda9a14331f0eed6b1cfc596566691f575691f4ff (diff)
downloaddotfiles-b31efd7b2c4fd495d188650a1761a673ec74c97e.tar.gz
dotfiles-b31efd7b2c4fd495d188650a1761a673ec74c97e.tar.bz2
dotfiles-b31efd7b2c4fd495d188650a1761a673ec74c97e.zip
(Emacs/config)~g is not bound in compilation-mode-map
This means I can use, say, ~gg~ to go to the top of the buffer without recompiling.
Diffstat (limited to 'Emacs')
-rw-r--r--Emacs/.config/emacs/config.org3
1 files changed, 3 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index cd788ce..c113a7b 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -1050,6 +1050,9 @@ Colourising the compilation buffer so ANSI colour codes get computed.
(nmmap
:keymaps 'compilation-mode-map
"c" #'recompile)
+ (general-def
+ :keymaps 'compilation-mode-map
+ "g" nil) ;; by default this is recompile
:display
("\\*compilation\\*"
(display-buffer-reuse-window display-buffer-at-bottom)