-
We can search a file with ''/" and the global workspace with "/" Is there a way to search within the current function or class? Seems like something that is possible with the tree sitter grammars? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can't really search within a function but you can select a function with |
Beta Was this translation helpful? Give feedback.
You can't really search within a function but you can select a function with
maf
(mat
for class) and then uses
to select the regex matches of your search. I guess the only plus of "function" specific search over going to the start of the function then searching, would letter still shows results if the search term is only outside of he function. In my opinion that isn't really worth it though.