Visual Studio Code 的使用
[TOC]
插件
插件的快捷键配置、使用说明都在的首页中
JSON Tools (eriklynd.json-tools)
Tools for manipulate JSON. You can pretty/minify JSON with this extension.
Git History (git log) (donjayamanne.githistory)
View git log along with the graph and details.
REST Client (humao.rest-client)
REST Client allows you to send HTTP request and view the response in Visual Studio Code directly.
SQL Beautify (sensourceinc.vscode-sql-beautify)
格式化sql,人气较低,不太好用
Settings Sync 将vscode的设置同步到gist来存储
markdown
markdownlint :语法提示
Markdown All in One :All you need for Markdown (keyboard shortcuts, table of contents, auto preview and more).
Markdown Preview Enhanced :强推,md预览
Markdown PasteURL :快捷的粘贴url地址
Markdown Paste :快捷的粘贴图片
个性化设置
Settings File Locations Depending on your platform, the user settings file is located here: Windows
%APPDATA%\Code\User\settings.json
Mac$HOME/Library/Application Support/Code/User/settings.json
Linux$HOME/.config/Code/User/settings.json
首选项-设置
VSCode的设置是json形式的配置,做了图形化显示,设置分为用户设置和工作区设置,工作区设置就是保存在当前工作区的
settings.json
,用户设置则是全局的。自定义的设置是一个新的json配置文件,里面的配置会覆盖系统默认配置文件,所以不用担心修改错了东西而改不回去
terminal.integrated.fontFamily
"files.hotExit": "onExit"
是否允许热退出,即文件未保存的情况下也可以退出编辑器,下次打开会恢复,默认是允许的。
其他首选项设置
problems.decorations.enabled
文件图标上显示错误信息的数字提示。The number of errors/warnings is shown in the decoration. The setting problems.decorations.enabled allows you to enable/disable the error/warning decorations.
首选项-键盘快捷方式
键盘快捷键设置也是json格式,与系统设置原理一样,默认打开是图形化界面,但是可以进入
高级自定义
修改keybindings.json
文件 这里除了定义系统按键也可以定义插件(json设置中以extesion前缀)的按键设置,当然 插件的快捷键也可以在插件的首页里进行配置更为清晰
任务配置
typescript的一键编译任务
Last updated