文章目录
- 插件安装
- 推荐设置
-
-
-
- [1. 控制具有未保存更改的编辑器的 自动保存](#1. 控制具有未保存更改的编辑器的 自动保存)
- [2. 启用自动猜测编码](#2. 启用自动猜测编码)
- [3. 平滑滚动和光标闪烁的设置](#3. 平滑滚动和光标闪烁的设置)
- [4. 自动格式化的设置](#4. 自动格式化的设置)
- [5. 自动换行功能](#5. 自动换行功能)
- [6. 按下回车键时如何接受代码建议的行为](#6. 按下回车键时如何接受代码建议的行为)
- [7. 建议列表中如何预先选择建议](#7. 建议列表中如何预先选择建议)
- [8. 启用自定义对话框样式](#8. 启用自定义对话框样式)
- [9. 控制着是否在编辑器的概览标尺中显示断点标记](#9. 控制着是否在编辑器的概览标尺中显示断点标记)
- [10. 生成 Doxygen 注释时所使用的风格](#10. 生成 Doxygen 注释时所使用的风格)
- [10. 关闭本地历史记录功能](#10. 关闭本地历史记录功能)
- [11. 设置字体族](#11. 设置字体族)
- [12. 显示匹配的括号对](#12. 显示匹配的括号对)
-
-
- 本人的配置
插件安装
- C/C++
- Chinese (Simplified) (简体中文) Language Pack for Visual Studio Code
- Code Runner
- Competitive Programming Helper (cph)
- Error Lens
- macros
- One Dark Pro
- Remote - SSH
- Remote - SSH: Editing Configuration Files
- VSCode Neovim
插件设置
- C/C++
json
// @ext:ms-vscode.cpptools
// C_Cpp: Clang_format_fallback Style
{ BasedOnStyle: Google, AccessModifierOffset: -4, AllowShortFunctionsOnASingleLine: Empty, AllowShortLambdasOnASingleLine: Empty, IndentWidth: 4, ObjCBlockIndentWidth: 4 }
// C_Cpp: Clang_format_style
{ BasedOnStyle: Google, AccessModifierOffset: -4, AllowShortFunctionsOnASingleLine: Empty, AllowShortLambdasOnASingleLine: Empty, IndentWidth: 4, ObjCBlockIndentWidth: 4 }
// C_Cpp › Doxygen: Generated Style
/**
- Code Runner
json
// @ext:formulahendry.code-runner
// Code-runner: Run In Terminal
勾选
// Code-runner: Save All Files Before Run
勾选
// Code-runner: Save File Before Run
勾选
- Competitive Programming Helper (cph)
json
// @ext:DivyanshuAgrawal.competitive-programming-helper
// Cph › General: Default Language
cpp
- macros
json
// @ext:geddski.macros
"macros": {
"saveAndEscapeNeovim": [
"workbench.action.files.save",
"vscode-neovim.escape"
]
},
// 配合快捷键 添加键映射 keybindings.json
{
"key": "ctrl+s",
"command": "macros.saveAndEscapeNeovim",
"when": "editorTextFocus && NeoVim.mode == insert"
}
- VSCode Neovim
json
// @ext:asvetliakov.vscode-neovim
// Vscode-neovim › Neovim Executable Paths: Win32
C:\Program Files\Neovim\bin\nvim.exe
推荐设置
1. 控制具有未保存更改的编辑器的 自动保存
json
// Files: Auto Save
"files.autoSave": "afterDelay"
2. 启用自动猜测编码
用于控制编辑器在打开文件时是否尝试自动猜测文件的编码格式。如果将该选项设置为 true,VSCode 将会在打开文件时尝试根据文件内容来猜测编码格式,以便正确地显示文本内容。
json
// Files: Auto Guess Encoding
"files.autoGuessEncoding": true
3. 平滑滚动和光标闪烁的设置
可以提高编辑器和工作台的视觉效果,使得滚动和光标闪烁更加流畅和舒适。
json
// Editor: Smooth Scrolling
"editor.smoothScrolling": true,
// Workbench › List: Smooth Scrolling
"workbench.list.smoothScrolling": true,
// Editor: Cursor Blinking
"editor.cursorBlinking": "smooth",
// Terminal › Integrated: Smooth Scrolling
"terminal.integrated.smoothScrolling": true,
// Editor: Cursor Smooth Caret Animation
"editor.cursorSmoothCaretAnimation": "on"
4. 自动格式化的设置
通过启用这两个选项,你可以确保在粘贴内容或保存文件时,代码会自动按照规定的风格进行格式化,从而提高代码的可读性和一致性
jso
// Editor: Format On Paste
"editor.formatOnPaste": true,
// Editor: Format On Save
"editor.formatOnSave": true
5. 自动换行功能
这样做有助于提高代码的可读性,特别是当你处理较长的行时,自动换行可以使得代码更加清晰,而不需要不断地水平滚动来查看完整的行内容
json
// Editor: Word Wrap
"editor.wordWrap": "on"
6. 按下回车键时如何接受代码建议的行为
按下回车键会根据上下文智能地接受建议。具体来说,如果当前正在编辑的建议与已输入的内容匹配,则按下回车键将接受建议。如果没有建议,或者当前建议与已输入的内容不匹配,则按下回车键会插入一个换行符。
这个设置可以帮助加快编码过程,特别是在使用自动完成功能时,通过智能地处理回车键的行为,使得接受建议和输入换行之间的切换更加流畅和高效
json
// Editor: Accept Suggestion On Enter
"editor.acceptSuggestionOnEnter": "smart"
7. 建议列表中如何预先选择建议
这意味着当你触发代码建议列表时,编辑器会优先选择最近使用过的建议项作为默认选项。这样做的目的是为了更快地访问到你最近常用的建议,从而提高编码效率。
json
// Editor: Suggest Selection
"editor.suggestSelection": "recentlyUsed"
8. 启用自定义对话框样式
通过启用自定义对话框样式,你可以自定义对话框窗口的外观,以满足你的应用程序或个人喜好的需求。这使得对话框能够更好地与你的应用程序整体风格相匹配,或者提供一种更加独特的用户体验
json
// Window: Dialog Style
"window.dialogStyle": "custom"
9. 控制着是否在编辑器的概览标尺中显示断点标记
当这个设置为 true 时,如果你在代码中设置了断点,那么在编辑器的侧边概览标尺中会显示相应的断点标记,以便你在代码中快速地查看断点的位置。这对于调试代码非常有用,因为它使得你可以轻松地浏览和导航到断点所在的位置,而不必依赖于纯文本的代码视图。
这个设置可以帮助提高调试过程的效率,特别是在处理大型代码文件时,通过在概览标尺中显示断点标记,你可以更快地了解断点的位置分布,从而更轻松地进行调试。
json
// Debug: Show Breakpoints In Overview Ruler
"debug.showBreakpointsInOverviewRuler": true
10. 生成 Doxygen 注释时所使用的风格
例如,如果你在 C++ 代码中使用了 Doxygen 插件来生成文档注释,当你触发生成注释的命令时,生成的注释将会以 /** ... */
的格式呈现在代码中。
这种风格的 Doxygen 注释是常见的,通常用于生成代码文档和说明。
json
// C_Cpp › Doxygen: Generated Style
"C_Cpp.doxygen.generatedStyle": "/**"
10. 关闭本地历史记录功能
表示禁用本地历史记录功能。本地历史记录功能会自动保存你对文件的更改历史,允许你在需要时回溯到以前的版本。禁用此功能后,Visual Studio Code 将不再保存文件的历史更改,因此你将无法使用本地历史记录功能来回溯文件的更改。
这个设置通常用于根据个人偏好或者特定的工作流程来控制是否需要使用本地历史记录功能。
json
// Workbench › Local History: Enabled
"workbench.localHistory.enabled": false
11. 设置字体族
在这个设置中,字体族由多个字体名称组成,按照优先级顺序排列。如果操作系统中安装了指定的字体,则编辑器会使用第一个可用的字体。如果第一个字体不可用,则会依次尝试后续的字体。
在这个例子中,字体族包括了三个字体名称:首选使用 JetBrains Mono 字体,如果系统中没有安装这个字体,则尝试使用 Courier New 字体,如果还没有,则使用 monospace 通用等宽字体。
json
// Editor: Font Family
"editor.fontFamily": "JetBrains Mono, 'Courier New', monospace",
12. 显示匹配的括号对
在编辑器中显示活跃(当前正在匹配的)括号对的指示线。当你在代码中选中一个括号时,它会突出显示与之匹配的另一个括号,并在它们之间显示一条指示线,以帮助你更容易地理解括号的配对关系。
json
// Editor › Guides: Bracket Pairs
"editor.guides.bracketPairs": "active",
本人的配置
json
{
"workbench.localHistory.enabled": false,
"files.autoSave": "afterDelay",
"editor.fontSize": 18,
"editor.fontFamily": "JetBrains Mono, 'Courier New', monospace",
"workbench.colorTheme": "One Dark Pro",
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, AccessModifierOffset: -4, AllowShortFunctionsOnASingleLine: Empty, AllowShortLambdasOnASingleLine: Empty, IndentWidth: 4, ObjCBlockIndentWidth: 4 }",
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google, AccessModifierOffset: -4, AllowShortFunctionsOnASingleLine: Empty, AllowShortLambdasOnASingleLine: Empty, IndentWidth: 4, ObjCBlockIndentWidth: 4 }",
"extensions.ignoreRecommendations": true,
"explorer.confirmDelete": false,
"debug.onTaskErrors": "debugAnyway",
"remote.SSH.remotePlatform": {
"Debian": "linux"
},
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"vscode-neovim.neovimExecutablePaths.win32": "C:\\Program Files\\Neovim\\bin\\nvim.exe",
"macros": {
"saveAndEscapeNeovim": [
"workbench.action.files.save",
"vscode-neovim.escape"
]
},
"editor.lineNumbers": "relative",
"cph.general.defaultLanguage": "cpp",
"window.menuBarVisibility": "compact",
"workbench.activityBar.location": "bottom",
"files.exclude": {
".vscode": true
},
"files.autoGuessEncoding": true,
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"editor.cursorBlinking": "smooth",
"terminal.integrated.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.wordWrap": "on",
"editor.acceptSuggestionOnEnter": "smart",
"editor.suggestSelection": "recentlyUsed",
"window.dialogStyle": "custom",
"debug.showBreakpointsInOverviewRuler": true,
"C_Cpp.doxygen.generatedStyle": "/**",
"code-runner.runInTerminal": true,
"code-runner.saveAllFilesBeforeRun": true,
"code-runner.saveFileBeforeRun": true,
"editor.guides.bracketPairs": "active",
}