From dc4efd4dbac87fdbb4cf5a5eaf25f0a74bd0db39 Mon Sep 17 00:00:00 2001 From: taynpg Date: Sun, 26 May 2024 10:10:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0code=E7=9A=84=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code.txt | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) diff --git a/code.txt b/code.txt index 112cc1a..26b793d 100644 --- a/code.txt +++ b/code.txt @@ -9,4 +9,59 @@ (2)ninja (3)git 3.资源 -(1)ComicShannsMono.zip字体。 \ No newline at end of file +(1)ComicShannsMono.zip字体。 + +快捷键: +[ + { + "command": "cmake.debugTarget", + "key": "F5", + "when": "cmake:enableFullFeatureSet && inCMakeProject && !cmake:hideDebugCommand && !inDebugMode" + }, + { + "command": "editor.action.revealDefinition", + "key": "ALT+G", + "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" + } +] + +microsoft cpp intelligence config: +{ + "files.autoSave": "onFocusChange", + "editor.fontSize": 15, + "editor.fontFamily": "'IBM Plex Mono', 'IBM Plex Mono', 'IBM Plex Mono'", + "cmake.configureOnOpen": true, + "cmake.debugConfig": { + "console": "integratedTerminal", + "visualizerFile": "${workspaceRoot}/.vscode/qt6.natvis", + "setupCommands": [ + { + "description": "-gdb-set charset utf-8", + "text": "-gdb-set charset UTF-8" + }, + { + "description": "Enable gdb pretty-printing", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] + }, + "cmake.environment": { + "PATH": "${env:PATH};C:/Qt/msvc_6.6.3_x64/bin" + }, + "cmake.options.statusBarVisibility": "visible", + "cmake.generator": "Ninja", + "C_Cpp.default.compileCommands": "${workspaceRoot}/build/compile_commands.json", + "C_Cpp.default.cppStandard": "c++17", + "editor.inlayHints.enabled": "off", + "editor.unicodeHighlight.allowedLocales": { + "ja": true, + "zh-hant": true, + "zh-hans": true + }, + "files.associations": { + "vector": "cpp", + "qapplication": "cpp", + "xstring": "cpp" + } +} \ No newline at end of file