fix(wpcarro/emacs): Disable edebug's "h" KBD
...so that I can move left while debugging. Change-Id: I7124da76dc51b0b5ca22a7e4a13482fc8da30150 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4811 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com>
This commit is contained in:
parent
5b1864422f
commit
df9a698c09
1 changed files with 11 additions and 0 deletions
|
@ -48,6 +48,7 @@
|
|||
(require 'evil-commentary)
|
||||
(require 'evil-surround)
|
||||
(require 'key-chord)
|
||||
(require 'edebug)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;; General Keybindings
|
||||
|
@ -380,6 +381,16 @@
|
|||
"<SPC>" #'buffer-show-previous
|
||||
"k" #'kill-buffer)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;; edebug
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(general-define-key
|
||||
:states '(normal)
|
||||
:keymaps '(edebug-mode-map)
|
||||
;; this restores my ability to move-left while debugging
|
||||
"h" nil)
|
||||
|
||||
;; Install KBDs like <SPC>jb to search through my monorepo.
|
||||
(bookmark-install-kbds)
|
||||
|
||||
|
|
Loading…
Reference in a new issue