According to the docs, it should be
--ignore PATTERN
I have a file containing tags, named "tags". I have tried the following, each of them still searches through the tag file..
ag -Qt --ignore ".*tags" "asdf"
ag -Qt --ignore .*tags "asdf"
ag -Qt --ignore "tags" "asdf"
ag -Qt --ignore tags "asdf"
ag -Qt --ignore *tags
and none of them works.
If I use what's suggested here, then ag doesn't accept it at all
I tried to work around it by renaming it to temp.tags and using *.tags
pattern to try and ignore it, but it still doesn't work.
Any ideas?
question from:
https://stackoverflow.com/questions/22999346/silver-searcher-how-to-ignore-a-file 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…