UNPKG

manual-visual-studio-code

Version:

Visual Studio Code 是一款免费开源的现代化轻量级代码编辑器。

28 lines (24 loc) 885 B
# 配置文件 打开 Visual Studio Code ,左下角选择设置,然后点击右上角打开设置,添加下面的内容。 ```json { "editor.fontFamily": "Consolas, Microsoft YaHei", "files.autoSave": "afterDelay", "files.autoGuessEncoding": true, "workbench.list.smoothScrolling": true, "editor.cursorSmoothCaretAnimation": "on", "editor.smoothScrolling": true, "editor.cursorBlinking": "smooth", "editor.mouseWheelZoom": true, "editor.formatOnPaste": true, "editor.formatOnType": true, "editor.formatOnSave": true, "editor.wordWrap": "on", "editor.guides.bracketPairs": true, "editor.suggest.snippetsPreventQuickSuggestions": false, "editor.acceptSuggestionOnEnter": "smart", "editor.suggestSelection": "recentlyUsed", "window.dialogStyle": "custom", "debug.showBreakpointsInOverviewRuler": true } ```