atom-fuzzy-grep
atom-fuzzy-grep copied to clipboard
can't ignore multiple folders
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.