Fix order of +(helm|ivy)-project-search-engines
This commit is contained in:
parent
a8d41a93c0
commit
277915b28c
2 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,7 @@ list of: ripgrep, ag, pt, git-grep and grep. If ARG (universal argument),
|
|||
preform search from current directory."
|
||||
(interactive "P")
|
||||
(call-interactively
|
||||
(or (cl-loop for tool in (cl-remove-duplicates +helm-project-search-engines)
|
||||
(or (cl-loop for tool in (cl-remove-duplicates +helm-project-search-engines :from-end t)
|
||||
if (executable-find (symbol-name tool))
|
||||
return (intern (format "+helm/%s%s" tool (if arg "-from-cwd" ""))))
|
||||
(if arg
|
||||
|
|
|
@ -285,7 +285,7 @@ list of: ripgrep, ag, pt, git-grep and grep. If ARG (universal argument),
|
|||
preform search from current directory."
|
||||
(interactive "P")
|
||||
(call-interactively
|
||||
(or (cl-loop for tool in (cl-remove-duplicates +ivy-project-search-engines)
|
||||
(or (cl-loop for tool in (cl-remove-duplicates +ivy-project-search-engines :from-end t)
|
||||
if (executable-find (symbol-name tool))
|
||||
return (intern (format "+ivy/%s%s" tool (if arg "-from-cwd" ""))))
|
||||
(if arg
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue