vscode实现不显示“.meta”文件


本文摘自PHP中文网,作者V,侵删。

1、文件-->首选项-->设置-->工作区设置

2、增加如下配置:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

{

    "files.exclude": {

        "**/.git": true,

        "**/.svn": true,

        "**/.hg": true,

        "**/CVS": true,

        "**/.DS_Store": true,

        "**/*.meta":true

    },

    "search.exclude": {

        "**/node_modules": true,

        "**/bower_components": true,

        "**/.git": true,

        "**/.svn": true,

        "**/*.meta":true

    }

}

3、用户配置

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

{

    "git.ignoreMissingGitWarning": true,

    "sublimeTextKeymap.promptV3Features": true,

    "editor.multiCursorModifier": "ctrlCmd",

    "editor.snippetSuggestions": "top",

    "editor.formatOnPaste": true,

    "git.ignoreLegacyWarning": true,

    "csharp.format.enable": false,

    "terminal.integrated.shell.windows": "F:\\Git\\bin\\bash.exe",

    "editor.fontSize": 18,

    "workbench.colorTheme": "Monokai",

    "editor.autoIndent": false,

    "files.exclude": {

        "**/*.meta": true

    }

}

相关文章教程推荐:vscode教程

以上就是vscode实现不显示“.meta”文件的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

vsCode设置不了中文

vsCode配置c/c++开发环境

如何解决vsCode集成“git bash”后的中文乱码问题

vsCode如何缩小界面尺寸

vsCode不显示缩略图

vsCode打开文件时新建窗口怎么设置

vsCode如何运行微信小程序

vsCode如何修改终端

vsCode如何调试html

vsCode 如何全部替换?

更多相关阅读请进入《vsCode》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...