fix(navigation): Update setup for recent changes to helm

This commit is contained in:
2020-08-05 10:09:35 +01:00
parent 4ba09d49b6
commit 6cca25c66c
8 changed files with 20 additions and 14 deletions

View File

@@ -10,6 +10,7 @@
(require 'siren-lsp)
(use-package helm-lsp
:after (helm-global-bindings)
:bind
("C-c '" . helm-lsp-workspace-symbol)
("C-c C-'" . helm-lsp-workspace-symbol))

View File

@@ -9,7 +9,7 @@
(require 'siren-helm)
(use-package helm-ag
:after (helm-config)
:after (helm-global-bindings)
:bind
("C-x '" . helm-do-ag-project-root)
("C-x C-'" . helm-do-ag-project-root)

View File

@@ -10,6 +10,7 @@
(use-package helm-gtags
:defer t
:after (helm-global-bindings)
:custom
(helm-gtags-auto-update t)

View File

@@ -9,6 +9,7 @@
(require 'siren-helm)
(use-package helm-open-github
:after (helm-global-bindings)
:bind
("C-c o f" . helm-open-github-from-file)
("C-c o c" . helm-open-github-from-commit)

View File

@@ -9,6 +9,7 @@
(require 'siren-helm)
(use-package helm-swoop
:after (helm-global-bindings)
:bind
("M-r" . helm-swoop-without-pre-input)
("M-R" . helm-swoop-back-to-last-point)

View File

@@ -9,19 +9,18 @@
;; Helm fails with tramp-methods symbol being void if tramp is not required.
(require 'tramp)
(use-package helm-config
(use-package helm-global-bindings
:straight (helm)
:demand t
:bind
("C-c h" . helm-command-prefix)
(:map helm-command-map
("M" . helm-man-woman))
:custom
(helm-command-prefix-key nil))
(helm-command-prefix-key "C-c h"))
(use-package helm
:after (helm-config)
:after (helm-global-bindings)
:defer t
:hook
(helm-minibuffer-set-up . siren-helm--hide-minibuffer-maybe)
@@ -112,7 +111,7 @@
(use-package helm-command
:straight (helm)
:after (helm-config)
:after (helm-global-bindings)
:bind
("C-c C-m" . helm-M-x)
@@ -122,14 +121,14 @@
(use-package helm-elisp
:straight (helm)
:after (helm-config)
:after (helm-global-bindings)
:bind
(:map helm-command-map
("d" . helm-apropos)))
(use-package helm-files
:straight (helm)
:after (helm-config)
:after (helm-global-bindings)
:bind
("C-x C-f" . helm-find-files)
@@ -140,20 +139,20 @@
(use-package helm-for-files
:straight (helm)
:after (helm-config)
:after (helm-global-bindings)
:bind
("C-c f f" . helm-for-files)
("C-c f r" . helm-recentf))
(use-package helm-imenu
:straight (helm)
:after (helm-config)
:after (helm-global-bindings)
:bind
("C-t" . helm-imenu))
(use-package helm-ring
:straight (helm)
:after (helm-config)
:after (helm-global-bindings)
:defer t
:init
;; This advice is borrowed from the browse-kill-ring package.
@@ -168,10 +167,12 @@
(ad-activate 'yank-pop))
(use-package helm-descbinds
:defer t)
:defer t
:after (helm-global-bindings))
(use-package helm-describe-modes
:defer t)
:defer t
:after (helm-global-bindings))
(provide 'siren-helm)
;;; siren-helm.el ends here

View File

@@ -10,6 +10,7 @@
(require 'siren-projectile)
(use-package helm-projectile
:after (helm-global-bindings)
:bind
("C-x ;" . helm-projectile-find-file)
("C-x C-;" . helm-projectile-find-file)

View File

@@ -9,7 +9,7 @@
(require 'siren-helm)
(use-package helm-make
:after (helm-config)
:after (helm-global-bindings)
:bind
(:map helm-command-map
("m" . helm-make-projectile))