mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
refactor!: remove pcre2el package
BREAKING CHANGE: This removes the pcre2el package, which Doom was using solely for one function to escape PCREs. In the interest of thinning out Doom's core, I've hoisted a simpler version of the function into Doom's stdlib so I can remove the dependency.
This commit is contained in:
@ -238,7 +238,7 @@ This backend prefers \"just working\" over accuracy."
|
||||
Uses and requires `+ivy-file-search', `+helm-file-search', or `+vertico-file-search'.
|
||||
Will return nil if neither is available. These require ripgrep to be installed."
|
||||
(when identifier
|
||||
(let ((query (rxt-quote-pcre identifier)))
|
||||
(let ((query (doom-pcre-quote identifier)))
|
||||
(ignore-errors
|
||||
(cond ((modulep! :completion ivy)
|
||||
(+ivy-file-search :query query)
|
||||
|
Reference in New Issue
Block a user