aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-10-01 16:21:52 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-10-01 16:26:00 +0100
commit3fe3062be14886a5ae9e2cdca9fc4013716878d3 (patch)
treeb3a3741ca0d6eb69117e27a97f46149e91430b0e /Emacs/.config
parent7a03b0d585275fadf275c9b028ea9053334fcbcf (diff)
downloaddotfiles-3fe3062be14886a5ae9e2cdca9fc4013716878d3.tar.gz
dotfiles-3fe3062be14886a5ae9e2cdca9fc4013716878d3.tar.bz2
dotfiles-3fe3062be14886a5ae9e2cdca9fc4013716878d3.zip
Hydra for moving between errors
Diffstat (limited to 'Emacs/.config')
-rw-r--r--Emacs/.config/emacs/config.org11
1 files changed, 8 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index 185e5fb..8340acb 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -2662,11 +2662,16 @@ so you can actually read the text.
("\\*compilation\\*"
(display-buffer-reuse-window display-buffer-at-bottom)
(reusable-frames . t)
- (window-height . 0.25))
+ (window-height . 0.3))
+ :hydra
+ (move-error-hydra
+ (:hint nil) "Hydra for moving between errors"
+ ("j" #'next-error)
+ ("k" #'previous-error))
:general
(leader
- "j" #'next-error
- "k" #'previous-error)
+ "j" #'move-error-hydra/next-error
+ "k" #'move-error-hydra/previous-error)
(code-leader
"c" #'compile
"C" #'recompile)