-1

How do I do a search through :CocSearch for anything containing backslashes?

i.e: Module\Auth

romainl
  • 186,200
  • 21
  • 280
  • 313
javier_domenech
  • 5,995
  • 6
  • 37
  • 59

1 Answers1

1

Turns out :CocSearch uses ripgrep (rg), so I applied the option --fixed-strings (-F) and the search string without quotes and it worked:

CocSearch -F Module\Auth

javier_domenech
  • 5,995
  • 6
  • 37
  • 59