feat(core): use general.el for keybind definitions nearly everywhere

Primarily this replaces :bind with :general in all use-package calls.
This commit is contained in:
2022-03-14 20:58:06 +00:00
parent 3fc0d2d77d
commit a8618938bf
91 changed files with 665 additions and 632 deletions

View File

@@ -10,9 +10,9 @@
(use-package helm-make
:after (helm-global-bindings)
:bind
(:map helm-command-map
("m" . helm-make-projectile))
:general
(:keymaps 'helm-command-map
"m" 'helm-make-projectile)
:custom
(helm-make-cache-targets nil)

View File

@@ -12,8 +12,8 @@
:hook
(makefile-mode . makefile-executor-mode)
:bind
("C-c C-m" . makefile-executor-execute-project-target)
:general
("C-c C-m" 'makefile-executor-execute-project-target)
:config
;; Replace get targets function with that from helm-make as it faster and more