diff options
-rw-r--r-- | Emacs/.config/emacs/config.org | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 8ca41bf..dc89091 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -523,6 +523,11 @@ Use hydras for stuff that I use often, currently buffer manipulation ("h" previous-buffer) ("c" kill-this-buffer)) + (defhydra hydra-goto-chg (evil-normal-state-map "g;") + "goto-chg" + (";" goto-last-change "goto-last-change") + ("," goto-last-change-reverse "goto-last-change-reverse")) + (defhydra hydra-code-manipulator (global-map "C-x c") "code-manip" ("j" evil-forward-section-begin) |