我想要某种忽略列表,我可以在其中添加我不想搜索的文件。您可以通过第二次单击左列找到“在文件中查找”*文件视图/选项卡。
我对 Steeldriver 问题的输出
--exclude='*.aux' --exclude='*.bib' --exclude='*.log'
--exclude='*.svg' --exclude='*.blg'
怎么可以忽视呢。 Geany 中的 aux 文件在文件中查找?
答案1
grep
Geany 似乎在幕后使用在文件中进行搜索,并且它提供了额外选项:字段将附加参数传递给 grep 命令。因此,您应该只需--exclude='*.aux'
在提供的框中添加:
--exclude=GLOB
Skip files whose base name matches GLOB (using wildcard
matching). A file-name glob can use *, ?, and [...] as
wildcards, and \ to quote a wildcard or backslash character
literally.
请参阅man grep
参考资料 获取其他使用选项。