fix(emacs.d): Fix regex passing in counsel-rg

This commit is contained in:
Vincent Ambo 2019-12-17 11:46:58 +00:00
parent 5727b6d24f
commit ef3e5072ef

View file

@ -60,7 +60,10 @@
(use-package ivy-prescient
:after (ivy prescient)
:config
(ivy-prescient-mode))
(ivy-prescient-mode)
;; Fixes an issue with how regexes are passed to ripgrep from counsel,
;; see raxod502/prescient.el#43
(setf (alist-get 'counsel-rg ivy-re-builders-alist) #'ivy--regex-plus))
(use-package multiple-cursors)