mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-06 02:30:33 -08:00
fix(default): search-project: don't escape selection
This would double-escape for `+vertico/project-search`.
This commit is contained in:
parent
c8a5e6ec1c
commit
92c064459f
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ If prefix ARG is set, include ignored/hidden files."
|
|||
"Search current project for symbol at point.
|
||||
If prefix ARG is set, prompt for a known project to search from."
|
||||
(interactive
|
||||
(list (doom-pcre-quote (or (doom-thing-at-point-or-region) ""))
|
||||
(list (or (doom-thing-at-point-or-region) "")
|
||||
(let ((projectile-project-root nil))
|
||||
(if current-prefix-arg
|
||||
(if-let (projects (projectile-relevant-known-projects))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue