mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Implement helm project search functionality #644
Adds +helm/project-search, as well as +helm/ag and +helm/ag-from-cwd, and variants for rg, pt and grep/git-grep, to mirror the functionality available to :completion ivy. Also updates the evil ex commands and keybinds
This commit is contained in:
@ -167,6 +167,15 @@ the command buffer."
|
||||
(advice-add #'helpful--navigate :override #'+popup*helpful--navigate))
|
||||
|
||||
|
||||
;; `helm-ag'
|
||||
(after! helm-ag
|
||||
(defun +helm*pop-to-buffer (orig-fn &rest args)
|
||||
(pop-to-buffer
|
||||
(save-window-excursion (apply orig-fn args)
|
||||
(current-buffer))))
|
||||
(advice-add #'helm-ag--edit :around #'+helm*pop-to-buffer))
|
||||
|
||||
|
||||
;; `Info'
|
||||
(defun +popup*switch-to-info-window (&rest _)
|
||||
(when-let* ((win (get-buffer-window "*info*")))
|
||||
|
Reference in New Issue
Block a user