Atom不会忽略添加到忽略列表

时间:2016-07-15 12:26:41

标签: python atom-editor

我已将*.pyc添加到设置中被忽略的名称,但它们仍然在树状视图中可见。以下是我的配置文件:

    "*":
  core:
    disabledPackages: [
      "terminal-plus"
      "atom-terminal"
      "term3"
    ]
    ignoredNames: [
      ".git"
      ".hg"
      ".svn"
      ".DS_Store"
      "._*"
      "Thumbs.db"
      "*.pyc"
    ]
  "tree-view":
    hideVcsIgnoredFiles: true
  welcome:
    showOnStartup: false

我做错了吗?我还试过.pyc

1 个答案:

答案 0 :(得分:1)

请参阅此处有关已解决问题的讨论:

https://github.com/atom/tree-view/issues/50