Visual Studio Code settings in version 1.10.1 for UEFI BIOS coding

来源:互联网 发布:unity3d 源代码 编辑:程序博客网 时间:2024/06/03 19:22
// Place your settings in this file to overwrite the default settings
{



    // Whether the proxy server certificate should be verified against the list of supplied CAs.
    "http.proxyStrictSSL"true,

    // Controls how the editor should render whitespace characters, posibilties are 'none', 'boundary', and 'all'. The 'boundary' option does not render single spaces between words.
    "editor.renderWhitespace""all",

    // Controls whether the editor should render indent guides
    "editor.renderIndentGuides"true,

    // Controls if the editor should automatically format the line after typing
    "editor.formatOnType"true,

    // Controls if the editor will scroll beyond the last line
    "editor.scrollBeyondLastLine"false,

    // Controls how the editor should render the current line highlight, possibilities are 'none', 'gutter', 'line', and 'all'.
    "editor.renderLineHighlight""all",

    // Is git enabled
    "git.enabled"false,

    // Automatically update extensions
    "extensions.autoUpdate"true,

    // Configure glob patterns for excluding files and folders.
    "files.exclude": {
        "**/.git"true,
        "**/.svn"true,
        "**/.hg"true,
        "**/NULL"true,
        "**/.DS_Store"true,
        "**/*.{bin,rom,ifwi,dll,lib,efi,exe,doc,docx,xls,EXE,idb,pdb,rtf}"true,
        "**/*.{signed,cap,html}"true,
        "**/*.{gitignore,user,p4ignore,sln}"true,
        "Build"true// exclude Build folder
        ".vscode"true
    },

    // Configure glob patterns of file paths to exclude from file watching. Changing this setting requires a restart. When you experience Code consuming lots of cpu time on startup, you can exclude large folders to reduce the initial load.
    "files.watcherExclude": {
        "**/.git/objects/**"true,
        "**/.git"true,
        "**/.svn"true,
        "**/.hg"true,
        "**/.DS_Store"true,
        "**/*.{bin,rom,ifwi,dll,lib,efi,exe,doc,docx,xls,EXE,idb,pdb,rtf}"true,
        "**/*.{gitignore,user,p4ignore,sln}"true,
        "Build"true// exclude Build folder
        ".vscode"true
    },

    // Configure file associations to languages (e.g. "*.extension": "html"). These have precedence over the default associations of the languages installed.
    "files.associations": {
        "*.mak""makefile"
        "*.inf""ini",
        "*.dec""makefile",
        "*.dsc""makefile",
        "*.fdf""makefile",
        "*.uni""cpp"
    },

    // Enable usage data and errors to be sent to Microsoft.
    "telemetry.enableTelemetry"false,

    // Enable crash reports to be sent to Microsoft.
    // This option requires restart to take effect.
    "telemetry.enableCrashReporter"false,

    // Controls if Quick Open should close automatically once it loses focus.
    "workbench.quickOpen.closeOnFocusLost"false,

    "window.zoomLevel"0,
    "window.title""${dirty}${activeEditorShort}${separator}${activeEditorLong}"
}
0 0
原创粉丝点击