Add helm-descbinds
This package allows for easier navigation of the assigned bindings. The inbuilt describe-bindings (C-h b b) feature is remapped to the helm equivalent. Signed-off-by: Brian McGillion <brian@ssrc.tii.ae>
This commit is contained in:
parent
24e35b95d5
commit
5a14dcd48e
2 changed files with 9 additions and 1 deletions
|
@ -41,7 +41,8 @@ be negative.")
|
|||
[remap projectile-switch-project] #'helm-projectile-switch-project
|
||||
[remap projectile-switch-to-buffer] #'helm-projectile-switch-to-buffer
|
||||
[remap recentf-open-files] #'helm-recentf
|
||||
[remap yank-pop] #'helm-show-kill-ring)
|
||||
[remap yank-pop] #'helm-show-kill-ring
|
||||
[remap describe-bindings] #'helm-descbinds)
|
||||
:config
|
||||
(helm-mode +1)
|
||||
;; helm is too heavy for `find-file-at-point'
|
||||
|
@ -189,3 +190,9 @@ be negative.")
|
|||
(lambda (buf &optional _resume) (pop-to-buffer buf)))
|
||||
(global-set-key [remap swiper] #'swiper-helm)
|
||||
(add-to-list 'swiper-font-lock-exclude #'+doom-dashboard-mode nil #'eq))
|
||||
|
||||
|
||||
(use-package! helm-descbinds
|
||||
:after helm-mode
|
||||
:config
|
||||
(helm-descbinds-mode +1))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue