首页 > 其他分享 >VSCodeSettings备份

VSCodeSettings备份

时间:2023-04-17 18:44:45浏览次数:54  
标签:false -- 备份 VSCodeSettings editor && fileNameWithoutExt true

{
    "workbench.colorTheme": "Monokai",
    "code-runner.runInTerminal": true,
    "code-runner.executorMap": {
        "javascript": "node",
        "php": "C:\\php\\php.exe",
        "python": "python",
        "perl": "perl",
        "ruby": "C:\\Ruby23-x64\\bin\\ruby.exe",
        "go": "go run",
        "html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
        "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
        "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        //"cpp": "cd $dir && g++ -fexec-charset=GBK -std=c++17 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        //"cpp": "cd $dir && g++ -fexec-charset=GBK -std=c++17 $fileName -D LOCAL -o        .\\build\\$fileNameWithoutExt.exe && .\\build\\$fileNameWithoutExt.exe",
        "cpp": "cd $dir && g++ -std=c++20 '-Wl,--stack=536870912' $fileName -o .\\build\\$fileNameWithoutExt.exe && .\\build\\$fileNameWithoutExt.exe",
    },
    "code-runner.languageIdToFileExtensionMap": {
        "bat": ".bat",
        "powershell": ".ps1",
        "typescript": ".ts"
    },
    "osumode.enabled": true,
    "osumode.enableCursorExplosions": true,
    "osumode.explosionSize": 3,
    "launch": {
        "version": "0.2.0",
        "configurations": [
            {
                "name": "C++",
                "type": "cppdbg",
                "request": "launch",
                "targetArchitecture": "x86",
                "program": "${fileDirname}/${fileBasenameNoExtension}",
                "args": [],
                "stopAtEntry": false,
                "cwd": "${workspaceFolder}",
                "environment": [],
                "MIMode": "lldb"
            },
            {
                "name": "Python",
                "type": "python",
                "request": "launch",
                "program": "${file}",
                "console": "integratedTerminal"
            }
        ]
    },
    "editor.defaultFormatter": "ms-vscode.cpptools",
    "osumode.enableComboCounter": false,
    "osumode.enableComboImage": false,
    "editor.mouseWheelZoom": true,
    "security.workspace.trust.untrustedFiles": "open",
    "C_Cpp.clang_format_style": "{ BasedOnStyle: Google, IndentWidth: 4,ColumnLimit: 0}",
    "terminal.integrated.enableMultiLinePasteWarning": false,
    "workbench.iconTheme": "Monokai Classic Icons",
    "tabnine.experimentalAutoImports": true,
    "editor.acceptSuggestionOnEnter": "off",
    "explorer.confirmDelete": false,
    "editor.fontWeight": "normal",
    "C_Cpp.default.cppStandard": "c++20",
    "code-runner.enableAppInsights": false,
    "C_Cpp.autocompleteAddParentheses": true,
    "fileheader.customMade": {
        "LastEditTime": "Do not edit", // 文件最后编辑时间
        "FilePath": "Do not edit" // 文件在项目中的相对路径 自动更新
    },
    "C_Cpp.default.cStandard": "c17",
    "C_Cpp.errorSquiggles": "Enabled",
    "fileheader.configObj": {
        "createFileTime": true,
        "language": {
            "languagetest": {
                "head": "/$$",
                "middle": " $ @",
                "end": " $/",
                "functionSymbol": {
                    "head": "/** ",
                    "middle": " * @",
                    "end": " */"
                },
                "functionParams": "js"
            }
        },
        "autoAdd": true,
        "autoAddLine": 100,
        "autoAlready": true,
        "annotationStr": {
            "head": "/*",
            "middle": " * @",
            "end": " */",
            "use": false
        },
        "headInsertLine": {
            "php": 2,
            "sh": 2
        },
        "beforeAnnotation": {
            "文件后缀": "该文件后缀的头部注释之前添加某些内容"
        },
        "afterAnnotation": {
            "文件后缀": "该文件后缀的头部注释之后添加某些内容"
        },
        "specialOptions": {
            "特殊字段": "自定义比如LastEditTime/LastEditors"
        },
        "switch": {
            "newlineAddAnnotation": true
        },
        "supportAutoLanguage": [],
        "prohibitAutoAdd": [
            "json"
        ],
        "folderBlacklist": [
            "node_modules",
            "文件夹禁止自动添加头部注释"
        ],
        "prohibitItemAutoAdd": [
            "项目的全称, 整个项目禁止自动添加头部注释, 可以使用快捷键添加"
        ],
        "moveCursor": true,
        "dateFormat": "YYYY-MM-DD HH:mm:ss",
        "atSymbol": [
            "@",
            "@"
        ],
        "atSymbolObj": {
            "文件后缀": [
                "头部注释@符号",
                "函数注释@符号"
            ]
        },
        "colon": [
            ": ",
            ": "
        ],
        "colonObj": {
            "文件后缀": [
                "头部注释冒号",
                "函数注释冒号"
            ]
        },
        "filePathColon": "路径分隔符替换",
        "showErrorMessage": false,
        "writeLog": false,
        "wideSame": false,
        "wideNum": 13,
        "functionWideNum": 0,
        "CheckFileChange": false,
        "createHeader": false,
        "useWorker": false,
        "designAddHead": false,
        "headDesignName": "random",
        "headDesign": false,
        "cursorModeInternalAll": {},
        "openFunctionParamsCheck": true,
        "functionParamsShape": [
            "{",
            "}"
        ],
        "functionBlankSpaceAll": {},
        "functionTypeSymbol": "*",
        "typeParamOrder": "type param",
        "customHasHeadEnd": {},
        "throttleTime": 60000,
        "functionParamAddStr": "",
        "NoMatchParams": "no show param"
    },
    "C_Cpp.codeAnalysis.clangTidy.codeAction.showDocumentation": false,
    "terminal.integrated.fontFamily": "monospace",
    "editor.fontLigatures": true,
    "editor.fontFamily": "Fira Code",
    "C_Cpp.intelliSenseUpdateDelay": 500,
    "cph.language.cpp.SubmissionCompiler": "GNU G++20 11.2.0 (64 bit, winlibs)",
    "errorLens.delay": 5000,
    "explorer.compactFolders": false,
    "explorer.sortOrder": "type",
    "cph.language.cpp.Args": "-std=c++20 -Wl,--stack=536870912",
    "editor.quickSuggestionsDelay": 0,
    "clangd.arguments": [
        "--header-insertion=never",
        "--clang-tidy",                 // 开启clang-tidy
        // "--all-scopes-completion",      // 全代码库补全
        "--completion-style=detailed",  // 详细补全
        // "--pch-storage=disk",           // 如果内存够大可以关闭这个选项
        "--log=error",
        // "--j=5",                        // 后台线程数,可根据机器配置自行调整
        "--background-index"
    ],
    "clangd.fallbackFlags": [
        "-std=c++20"
    ],
    "clangd.path": "C:\\msys64\\clang64\\bin\\clangd.exe",
    "[cpp]": {
        "editor.defaultFormatter": "ms-vscode.cpptools"
    },
    "editor.formatOnSave": true,
    "editor.inlayHints.enabled": "off",
    "files.autoSave": "afterDelay",
    "editor.formatOnType": false,
    "editor.cursorBlinking": "smooth",
    "window.dialogStyle": "custom",
    "editor.cursorSmoothCaretAnimation": "on",
    "sync.gist": "efc4cbc015dfceab1746de7012212719",
    "settingsSync.ignoredExtensions": [
    
    ],
}

标签:false,--,备份,VSCodeSettings,editor,&&,fileNameWithoutExt,true
From: https://www.cnblogs.com/blockche/p/17326780.html

相关文章

  • 如何在 Parallels Desktop for Mac 中备份、恢复或转移 Windows 虚拟机
    备份是个好习惯,现实生活中来说,它堪比后悔药。除了潜在的计算机丢失的隐患,有时候预料不到的硬件故障也会需要我们有个备份。所以今天,小编来教大家如何在ParallelsDesktop中备份Windows虚拟机以避免数据丢失。你需要什么?以下步骤适用于任何版本的Windows。(或者,任何版本的Linux......
  • windows系统mysql定时备份
    如下:一、创建bat任务脚本1.新建txt文档2.打开txt文档,并粘贴入以下内容3.按照自己的需求对内容进行修改,并删除掉//后内容以及中文空格,否则会运行失败4.保存,并将文件后缀修改为.bat格式5.双击测试程序是否能正常运行,如果正常,会弹出cmd运行窗口,运行完后会自动停止,此时会在路径下产......
  • 9.数据库分库分表备份 + 随机点名脚本
    1.数据库分库分表备份  2.随机点名脚本 ......
  • 博客园 geek 主题备份
    geek......
  • docker03 容器操作 应用部署 迁移备份 dockerfile
    今日内容详细目录今日内容详细1容器操作2应用部署2.1mysql部署2.2redis部署2.3nginx部署3迁移与备份4Dockerfile1容器操作#启动容器 dockerstart容器id#停止容器 dockerstop容器id#文件拷贝 #容器的文件copy到宿主机上(不是在容器内执行)dockercp容......
  • Jenkins 备份配置
    1、插件https://plugins.jenkins.io/thinBackup/2、系统管理--ThinBackup--Settings#创建备份目录并授权mkdir-p/data/backupchown-Rjenkins./data/backup ......
  • 安全参考和书安 NPM、PYPI、DockerHub 备份
    安全参考2013Dockerdockerpullapachecn0/hackcto-2013dockerrun-tid-p<port>:80apachecn0/hackcto-2013#访问http://localhost:{port}查看文档PYPIpipinstallhackcto-2013hackcto-2013<port>#访问http://localhost:{port}查看文档NPMnpminstall-ghackcto-e......
  • CEH 讲义 NPM、PYPI、DockerHub 备份
    CEHv10ModuleAllInOneDockerdockerpullapachecn0/ceh-v10-mod-allinonedockerrun-tid-p<port>:80apachecn0/ceh-v10-mod-allinone#访问http://localhost:{port}查看文档PYPIpipinstallceh-v10-mod-allinoneceh-v10-mod-allinone<port>#访问http://loca......
  • docker容器操作,应用部署,迁移与备份,Dockerfile
    目录容器操作应用部署mysql部署redisnginx迁移与备份容器保持为镜像镜像备份和恢复Dokcerfile镜像从哪里来使用Dockerfile来构建什么是DockerfileDockerfile的命令构建一个带vim的centos镜像基于Python3.8构建一个能够运行你这个程序的镜像容器操作启动容器dockerstart容器i......
  • 容器操作,应用部署,迁移与备份,Dockerfile
    容器操作,应用部署,迁移与备份,Dockerfile上节回顾#1docker启动,停止,查看状态命令 systemctlstartdockersystemctlstopdockersystemctlstatusdockerdockerinfo#查看详情systemctlenabledocker#开机自启动#2配置镜像源,拉取镜......