Map C-h to backspace
This commit is contained in:
parent
c794b67272
commit
9389b50b1f
5
init.el
5
init.el
|
@ -66,6 +66,9 @@
|
|||
|
||||
(use-package meow
|
||||
:demand t
|
||||
:bind
|
||||
("C-S-h" . help-command)
|
||||
("C-h" . (lambda () (interactive) (meow--execute-kbd-macro "DEL")))
|
||||
:config
|
||||
(setq meow-cheatsheet-layout meow-cheatsheet-layout-qwerty)
|
||||
(meow-motion-overwrite-define-key '("j" . meow-next)
|
||||
|
@ -73,7 +76,7 @@
|
|||
'("<escape>" . ignore))
|
||||
(meow-leader-define-key '("j" . "H-j")
|
||||
'("k" . "H-k")
|
||||
'("1" . meow-digit-argument)
|
||||
'("1" . meow-digit-argument)
|
||||
'("2" . meow-digit-argument)
|
||||
'("3" . meow-digit-argument)
|
||||
'("4" . meow-digit-argument)
|
||||
|
|
Loading…
Reference in a new issue