completion/ivy: remove unused var; update config

...to reflect our dropping ag/grep support.
This commit is contained in:
Henrik Lissner 2019-12-13 23:00:01 -05:00
parent a24b750c6c
commit 87f6dab424
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -7,16 +7,6 @@ When nil, don't preview anything.
When non-nil, preview non-virtual buffers. When non-nil, preview non-virtual buffers.
When 'everything, also preview 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 (defvar +ivy-buffer-unreal-face 'font-lock-comment-face
"The face for unreal buffers in `ivy-switch-to-buffer'.") "The face for unreal buffers in `ivy-switch-to-buffer'.")
@ -44,9 +34,7 @@ results buffer.")
:after-call pre-command-hook :after-call pre-command-hook
:init :init
(setq ivy-re-builders-alist (setq ivy-re-builders-alist
`(,@(cl-loop for cmd in '(counsel-ag `(,@(cl-loop for cmd in '(counsel-rg
counsel-rg
counsel-grep
swiper swiper
swiper-isearch) swiper-isearch)
collect (cons cmd #'+ivy-alternative-search)) collect (cons cmd #'+ivy-alternative-search))
@ -75,7 +63,7 @@ results buffer.")
;; ...but if that ever changes, show their full path ;; ...but if that ever changes, show their full path
ivy-virtual-abbreviate 'full ivy-virtual-abbreviate 'full
;; don't quit minibuffer on delete-error ;; don't quit minibuffer on delete-error
ivy-on-del-error-function nil ivy-on-del-error-function #'ignore
;; enable ability to select prompt (alternative to `ivy-immediate-done') ;; enable ability to select prompt (alternative to `ivy-immediate-done')
ivy-use-selectable-prompt t) ivy-use-selectable-prompt t)