美文网首页
Python在VSCode中隐藏.pyc文件

Python在VSCode中隐藏.pyc文件

作者: 袁俊亮技术博客 | 来源:发表于2017-03-23 17:49 被阅读1379次

Python在VSCode中隐藏.pyc文件

标签(空格分隔): Python


Python在VSCode中隐藏.pyc文件

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

{
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/*.pyc": true,
        "**/.DS_Store": true
    }
}

工作区设置

VSCode——>首选项——>设置——>工作区设置

参考文章

vscode常用快捷键及常用设置
vscode过滤pyc文件

相关文章

网友评论

      本文标题:Python在VSCode中隐藏.pyc文件

      本文链接:https://www.haomeiwen.com/subject/fketottx.html