mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-06 10:31:23 -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.
|
"Search current project for symbol at point.
|
||||||
If prefix ARG is set, prompt for a known project to search from."
|
If prefix ARG is set, prompt for a known project to search from."
|
||||||
(interactive
|
(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))
|
(let ((projectile-project-root nil))
|
||||||
(if current-prefix-arg
|
(if current-prefix-arg
|
||||||
(if-let (projects (projectile-relevant-known-projects))
|
(if-let (projects (projectile-relevant-known-projects))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue