dkprice / vim-easygrep

Fast and Easy Find and Replace Across Multiple Files
The Unlicense
325 stars 47 forks source link

Valid regexp won't work with Grep command #55

Closed jpmv27 closed 7 years ago

jpmv27 commented 7 years ago

The following command works as expected

:grep '[^ =*]\*/' *

but the same regexp passed to Grep command instead results in

grep: invalid regular expression

jpmv27 commented 7 years ago

Doh! My bad I was doing :Grep '[^ =*]\*/' instead of :Grep [^ =*]\*/ The latter works fine