mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix doom/help-search-{load-path,loaded-files}
counsel-rg-base-command now accepts a list. Closes #3323
This commit is contained in:
@ -632,9 +632,7 @@ config blocks in your private config."
|
||||
(unless (executable-find "rg")
|
||||
(user-error "Can't find ripgrep on your system"))
|
||||
(if (fboundp 'counsel-rg)
|
||||
(let ((counsel-rg-base-command
|
||||
(concat counsel-rg-base-command " "
|
||||
(mapconcat #'shell-quote-argument dirs " "))))
|
||||
(let ((counsel-rg-base-command (append counsel-rg-base-command dirs)))
|
||||
(counsel-rg query nil "-Lz" prompt))
|
||||
;; TODO Add helm support?
|
||||
(grep-find
|
||||
|
Reference in New Issue
Block a user