7

I am using Ack with MacVim and the Janus plugin. Everytime I want to search for a string in my project that contains whitespaces, I need to escape these with \ or .

Is there a way to avoid this? I know that once you enter a whitespace, the directory that you search should follow...

Flov
  • 1,527
  • 16
  • 25

1 Answers1

9

you can also quote your search:

:Ack "my searching query"
:Ack 'another one'
Hassek
  • 8,715
  • 6
  • 47
  • 59