How do I do a search through :CocSearch for anything containing backslashes?
:CocSearch
i.e: Module\Auth
Module\Auth
Turns out :CocSearch uses ripgrep (rg), so I applied the option --fixed-strings (-F) and the search string without quotes and it worked:
--fixed-strings
CocSearch -F Module\Auth
Copyright © 2021 Jogjafile Inc.
Turns out
:CocSearchuses ripgrep (rg), so I applied the option--fixed-strings(-F) and the search string without quotes and it worked:CocSearch -F Module\Auth