如何在VScode中过滤.pyc文件

来源:互联网 发布:银河证券交易炒股软件 编辑:程序博客网 时间:2024/06/05 14:24

工作区设置里添加如下代码:

{    "files.exclude": {        "**/.git": true,        "**/.svn": true,        "**/.hg": true,        "**/*.pyc": true,        "**/.DS_Store": true    }}
阅读全文
0 0