fix(emacs.d): Fix regex passing in counsel-rg
This commit is contained in:
parent
5727b6d24f
commit
ef3e5072ef
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue