-
Notifications
You must be signed in to change notification settings - Fork 5
Global search
haviital edited this page Apr 26, 2023
·
3 revisions
The global search window opens on the right side with F3. It will search the given test in all project files.
By default it matches to sub-strings and is no case sensitive.
Examples:
-
MyFunction\(
(an escaped character )- Matches to e.g.
MyFunction()
- Matches to e.g.
-
\bMyVar\b
(word match)- Matches to e.g.
MyVar
but not inMyVar2
- Matches to e.g.