From b7044b5f32e128ed329a7b1613a87918cf097cde Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 15 Nov 2019 23:56:08 -0500 Subject: [PATCH] Fix #2064: partially revert bd4755123 A change unintentionally snuck into bd4755123. --- modules/completion/ivy/config.el | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/completion/ivy/config.el b/modules/completion/ivy/config.el index 669e16eb4..d6ab7e367 100644 --- a/modules/completion/ivy/config.el +++ b/modules/completion/ivy/config.el @@ -7,6 +7,16 @@ When nil, don't preview anything. When non-nil, preview non-virtual buffers. When 'everything, also preview virtual buffers") +(defvar +ivy-project-search-engines '(rg ag) + "What search tools for `+ivy/project-search' (and `+ivy-file-search' when no +ENGINE is specified) to try, and in what order. + +To disable a particular tool, remove it from this list. To prioritize a tool +over others, move it to the front of the list. Later duplicates in this list are +silently ignored. + +If you want to already use git-grep or grep, set this to nil.") + (defvar +ivy-buffer-unreal-face 'font-lock-comment-face "The face for unreal buffers in `ivy-switch-to-buffer'.")