You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an extra argument to cli struct, so you can add a list of extensions. rip grep will perform the search only in the file extenions provided by this list.
Example:
cargo run -- div --include_extensions "html css"
This will perform a search for "div" pattern only in the *.html and *.css files on the current directory.
I think there is a rg option that lets you perform the search in some type of files. This would be the best solution.
Another solution would be to perform the search inside all files, and then in the "Nodes" tab apply the extension filter to the results.
The text was updated successfully, but these errors were encountered:
Add an extra argument to cli struct, so you can add a list of extensions. rip grep will perform the search only in the file extenions provided by this list.
Example:
This will perform a search for "div" pattern only in the *.html and *.css files on the current directory.
I think there is a
rg
option that lets you perform the search in some type of files. This would be the best solution.Another solution would be to perform the search inside all files, and then in the "Nodes" tab apply the extension filter to the results.
The text was updated successfully, but these errors were encountered: