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
Happy to update the docs with this info if anyone can point in the right direction.
Outside of Vim you can do rg sausages -tcss to search for sausages in any file type of 'css'. How do you pass the same file type limit argument in Vim?
The text was updated successfully, but these errors were encountered:
For me that just works (on linux) :Rg pattern -tcss and :Rg -tcss pattern work.
You have to specify pattern, as the script will only expand the current word when there are no arguments (if I understand correctly). You can manually expand the current word under the cursor on the vim command line with <c-r><c-w> (see :h c_<c-r>)
Happy to update the docs with this info if anyone can point in the right direction.
Outside of Vim you can do
rg sausages -tcss
to search for sausages in any file type of 'css'. How do you pass the same file type limit argument in Vim?The text was updated successfully, but these errors were encountered: