diff options
| author | Benjamin Motz <benjamin.motz@mailbox.org> | 2020-12-14 22:49:42 +0100 |
|---|---|---|
| committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-12-17 18:36:00 +0100 |
| commit | f8ef7dd43202862e6f89dd737fac18c028942f7b (patch) | |
| tree | 21622706139daf0b4e4218e4fa4197b60df1ef0e /modes | |
| parent | 73aa9808dd5a52e738f949f7c736b669ed4f0b62 (diff) | |
edebug: "h" should behave the same as j, k, l
j, k, l are used for navigation in edebug-mode and so should do h.
However, currently it performs "edebug-goto-here", which is also bound
to H.
Diffstat (limited to 'modes')
| -rw-r--r-- | modes/edebug/evil-collection-edebug.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modes/edebug/evil-collection-edebug.el b/modes/edebug/evil-collection-edebug.el index 8d78bb2..db8afdc 100644 --- a/modes/edebug/evil-collection-edebug.el +++ b/modes/edebug/evil-collection-edebug.el @@ -44,7 +44,8 @@ (evil-collection-define-key nil 'edebug-mode-map "g" nil - "G" nil) + "G" nil + "h" nil) ;; FIXME: Seems like other minor modes will readily clash with `edebug'. ;; `lispyville' and `edebug' 's' key? |
