geksilla/atom-fuzzy-grep

can't ignore multiple folders

Opened this issue · 2 comments

I changed Grep Command String from
ag -i --nocolor --nogroup --column --ignore=docs
to
ag -i --nocolor --nogroup --column --ignore={doc,docs,README.md}
just like ack or ag supports that, however now it searches everything and escapes all the options. Is there some other way to achieve ignoring multiple folders?

I can add multiple --ignore for same functionality
ag -i --nocolor --nogroup --column --ignore=docs --ignore=README.md
and it works fun fixing my problem but can't use brakets

Thanks for report!
That's instersting. I didn't use --ignore flag and brackets... but will check why it doesn't work when I'll have a chance.