简体   繁体   中英

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. 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

See the discussion on the resolved issue here:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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