简体   繁体   English

Atom不忽略* .pyc文件添加到忽略列表

[英]Atom not ignoring *.pyc files added to ignore list

I've added *.pyc to the ignored names in the settings but they're still visible in the tree view. 我已将*.pyc添加到设置中被忽略的名称中,但它们仍在树视图中可见。 Below is my config file: 以下是我的配置文件:

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

Am I doing something wrong? 难道我做错了什么? I've also tried .pyc 我也尝试过.pyc

See the discussion on the resolved issue here: 请参阅此处有关已解决问题的讨论:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM