mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-13 13:13:35 -05:00
completion/helm: fix void variable refs #2071
This commit is contained in:
@@ -74,9 +74,9 @@ workspace."
|
|||||||
(command
|
(command
|
||||||
(list "rg --no-heading --line-number --color never"
|
(list "rg --no-heading --line-number --color never"
|
||||||
"-S"
|
"-S"
|
||||||
(when all-files-p "-z -uu")
|
(when all-files "-z -uu")
|
||||||
(unless recursive-p "--maxdepth 1")))
|
(unless recursive "--maxdepth 1")))
|
||||||
(helm-ag-base-command (string-join command " ")))
|
(helm-ag-base-command (string-join (delq nil command) " ")))
|
||||||
;; TODO Define our own sources instead
|
;; TODO Define our own sources instead
|
||||||
(helm-attrset 'name (format "[rg %s] Searching %s"
|
(helm-attrset 'name (format "[rg %s] Searching %s"
|
||||||
(string-join (delq nil (cdr command)) " ")
|
(string-join (delq nil (cdr command)) " ")
|
||||||
|
Reference in New Issue
Block a user