不要忽略Atom中的node_modules

时间:2016-03-27 23:32:22

标签: node.js atom-editor

我正在使用node_modules来存储我的代码,遵循以下答案的建议:https://stackoverflow.com/a/24630974/599184

然而,Atom的搜索会忽略node_modules。如何才能在搜索中包含node_modules?我在Atom的“忽略名称”设置中没有node_modules

3 个答案:

答案 0 :(得分:35)

我在主要设置中取消选中排除VCS忽略的路径,但它没有效果。所以我做了一些研究,我发现还有另一种设置可以覆盖它。

您需要的设置可在

中找到

设置>套餐>核心软件包>树视图

您可以在此处找到隐藏忽略的名称隐藏VCS忽略的文件设置 - 后者是您要阻止边栏忽略VCS忽略的文件的设置

hide ignored elements

从以下来源得到这个,它适用于我:

blog.lukebennett.com/2015/09/21/show-hidden-files-in-atom-sidebar

答案 1 :(得分:25)

Atom中的默认行为是忽略.gitignore中的文件夹和文件

两种解决方案:

  • 在Atom主设置中,取消选中“排除VCS忽略的路径”

  • 进行项目搜索时,如果要在node_modules目录中搜索,请使用“node_modules”作为文件/目录模式,如果是“node_modules,src”正在node_modules目录和src文件夹中搜索,例如

答案 2 :(得分:0)

您也可以尝试使用新版本:

文件>配置...

    "*":
  core:
    excludeVcsIgnoredPaths: false <-- Set to false
    uriHandlerRegistration: "always"
  "exception-reporting":
    userId: "****"
  "tree-view":
    hideVcsIgnoredFiles: false <-- Set to false
  welcome:
    showOnStartup: false