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:
William Carroll 2021-11-08 21:47:07 -08:00 committed by clbot
parent 5b1864422f
commit df9a698c09

View file

@ -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)