Home > Development Tools > VSCode > body text

vscode implementation does not display '.meta' files

王林
Release: 2020-02-07 16:07:41
Original
7734 people have browsed it

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
    }
}
Copy after login

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
    }
}
Copy after login

相关文章教程推荐: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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template