mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
completion/ivy: fix +helm/grep* commands
They weren't being defined, since grep is not in +ivy-project-search-engines.
This commit is contained in:
@ -341,7 +341,7 @@ ones."
|
|||||||
;;;###autoload (autoload '+ivy/grep "completion/ivy/autoload/ivy")
|
;;;###autoload (autoload '+ivy/grep "completion/ivy/autoload/ivy")
|
||||||
;;;###autoload (autoload '+ivy/grep-from-cwd "completion/ivy/autoload/ivy")
|
;;;###autoload (autoload '+ivy/grep-from-cwd "completion/ivy/autoload/ivy")
|
||||||
|
|
||||||
(dolist (engine (cl-remove-duplicates +ivy-project-search-engines :from-end t))
|
(dolist (engine `(,@(cl-remove-duplicates +ivy-project-search-engines :from-end t) grep))
|
||||||
(defalias (intern (format "+ivy/%s" engine))
|
(defalias (intern (format "+ivy/%s" engine))
|
||||||
(lambda (all-files-p &optional query directory)
|
(lambda (all-files-p &optional query directory)
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
|
Reference in New Issue
Block a user