Fix Boon keymap error

This commit is contained in:
contrapunctus 2022-01-16 01:02:29 +05:30
parent 7481a65db1
commit 13acd66c78
1 changed files with 4 additions and 3 deletions

View File

@ -1017,10 +1017,11 @@ Don't try to check if there are files with a certain extension...it will lead to
((derived-mode-p 'sql-mode) (my-sql-hydra/body))
(t (contrapunctus-general-hydra/body))))
(define-key boon-command-map (kbd "m") #'my-dispatch-hydra)
(use-package boon
:bind (:map boon-command-map
("m" . my-dispatch-hydra)
("C-s" . my-dispatch-hydra)))
(global-set-key (kbd "C-s") #'my-dispatch-hydra)
(define-key boon-command-map (kbd "C-s") #'my-dispatch-hydra)
#+END_SRC
*** shell