Home  >  Article  >  Development Tools  >  vscode implementation does not display '.meta' files

vscode implementation does not display '.meta' files

王林
王林Original
2020-02-07 16:07:417746browse

vscode implementation does not display '.meta' files

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

2、增加如下配置:

{
    "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、用户配置

{
    "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教程

The above is the detailed content of vscode implementation does not display '.meta' files. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn