mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
chore(core): replace final :bind with :general which was previously missed
This commit is contained in:
@@ -149,15 +149,15 @@
|
||||
(use-package helm-elisp
|
||||
:straight helm
|
||||
:after (helm-global-bindings)
|
||||
:bind
|
||||
(:map helm-command-map
|
||||
("d" . helm-apropos)))
|
||||
:general
|
||||
(:keymaps 'helm-command-map
|
||||
"d" 'helm-apropos))
|
||||
|
||||
(use-package helm-files
|
||||
:straight helm
|
||||
:after (helm-global-bindings)
|
||||
:bind
|
||||
("C-x f" . helm-find-files)
|
||||
:general
|
||||
("C-x f" 'helm-find-files)
|
||||
|
||||
:custom
|
||||
(helm-buffer-max-length 64)
|
||||
@@ -167,9 +167,9 @@
|
||||
(use-package helm-for-files
|
||||
:straight helm
|
||||
:after (helm-global-bindings)
|
||||
:bind
|
||||
("C-c f f" . helm-for-files)
|
||||
("C-c f r" . helm-recentf))
|
||||
:general
|
||||
("C-c f f" 'helm-for-files)
|
||||
("C-c f r" 'helm-recentf))
|
||||
|
||||
(use-package helm-ring
|
||||
:straight helm
|
||||
|
||||
Reference in New Issue
Block a user