Atom“在项目中查找”不在 Buildroot 的输出/构建目录中返回结果
Atom 的“在项目中查找”无法返回 Buildroot 的输出/构建目录和子目录中的结果。 我可以做些什么或改变atom的设置以使其工作吗?
重现步骤
git clone git://git.busybox.net/buildroot; cd buildroot
make qemu_aarch64_virt_defconfig
make host-pkgconf
cd output/build; atom .
ctl-shift-f
Search for something common like char
Nothing is returned
grep -r char returns plenty
在output/build/* 目录中单独使用atom 时,同样的问题仍然存在。
预期行为
能够在 buildroot 的输出/构建目录的子目录中“在项目中查找”。
实际行为
尽管 grep -r 在同一目录中找到了很多结果,但没有返回任何结果。
atom github页面也提出了这个问题
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,“在项目中查找”会忽略被版本控制系统忽略的文件。可以在核心设置中禁用此设置。
由于这对于大多数工作流程来说并不理想,因此您可能需要查看第三方软件包,例如
atom-ignore
或 类似包。By default, "Find in project" ignores files that are ignored by your Version Control System. This settin can be disabled in the Core Settings.
Since this is not ideal for most workflows, you might want to look at third-party packages that such as
atom-ignore
or similar packages.