mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
fix(navigation): Update setup for recent changes to helm
This commit is contained in:
@@ -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))
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
|
||||
(use-package helm-gtags
|
||||
:defer t
|
||||
:after (helm-global-bindings)
|
||||
|
||||
:custom
|
||||
(helm-gtags-auto-update t)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user