Global search - felipemanga/FemtoIDE GitHub Wiki
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.