官方下载:https://code.visualstudio.com/,个人的电脑为window系统
进入VS code页面后,按住Ctrl+shift+x,输入chinese
安装后,按住ctrl+shift+p 或者F1 打开命令面板,之后输入 "config" 筛选可用命令列表,最后选择配置显示语言(Configure Display Language)命令,会出现locale.json
页面
在 locale.json
中"locale":"en"修改为"locale":"zh-cn",即可载入中文(简体)语言包。
注意:记得要restart才能生效呦!
1.vsCode左侧边栏打开文件夹的方法
点击文件->将文件夹添加到工作区->找到文件夹,打开即可。
2.向下拆分:查看-》编辑器布局-》向下拆分
Visual Studio Code是个牛逼的编辑器,启动非常快,完全可以用来代替其他文本文件编辑工具。又可以用来做开发,支持各种语言,相比其他IDE,轻量级完全可配置还集成Git感觉非常的适合前端开发,是微软亲生的想必TypeScript会支持的非常好。
所以仔细研究了一下文档未来可能会作为主力工具使用。
最重要的功能就是 F1
或 Ctrl+Shift+P
打开的命令面板了,在这个命令框里可以执行VSCode的任何一条命令,可以查看每条命令对应的快捷键,甚至可以关闭这个编辑器。
按一下Backspace
会进入到Ctrl+P
模式里
在Ctrl+P下输入>
又可以回到主命令框 Ctrl+Shift+P
模式。
在Ctrl+P
窗口下还可以
?
列出当前可执行的动作!
显示Errors或Warnings,也可以Ctrl+Shift+M
,想要操作dos终端也可以此快捷:
跳转到行数,也可以Ctrl+G
直接进入@
跳转到symbol(搜索变量或者函数),也可以Ctrl+Shift+O
直接进入@:
根据分类跳转symbol,查找属性或函数,也可以Ctrl+Shift+O
后输入:
进入#
根据名字查找symbol,也可以Ctrl+T
同时打开多个窗口(查看多个项目)
Ctrl+Shift+N
Ctrl+Shift+W
同时打开多个编辑器(查看多个文件)
Ctrl+N
Ctrl+Tab
,Alt+Left
,Alt+Right
Ctrl+\
,也可以按住Ctrl鼠标点击Explorer里的文件名Ctrl+1
Ctrl+2
Ctrl+3
Ctrl+k
然后按Left
或Right
格式调整
Ctrl+[
, Ctrl+]
Ctrl+Shift+[
, Ctrl+Shift+]
Ctrl+C
Ctrl+V
如果不选中,默认复制或剪切一整行Shift+Alt+F
,或Ctrl+Shift+P
后输入format code
Ctrl+Shift+X
Alt+Up
或 Alt+Down
Shift+Alt+Up
或Shift+Alt+Down
Ctrl+Enter
Ctrl+Shift+Enter
光标相关
Home
End
Ctrl+End
Ctrl+Home
Ctrl+Shift+]
Ctrl+i
Shift+End
Shift+Home
Ctrl+Delete
Shift+Alt+Left
和Shift+Alt+Right
Alt+Click
添加cursor或者Ctrl+Alt+Down
或 Ctrl+Alt+Up
Ctrl+Shift+L
Ctrl+D
下一个匹配的也被选中(被我自定义成删除当前行了,见下边Ctrl+Shift+K
)Ctrl+U
重构代码
F12
Alt+F12
Shift+F12
Ctrl+F12
F2
,输入新的名字,回车,会发现所有的文件都修改过了。F8
逐个跳转Set file to compare
,然后需要对比的文件上右键选择Compare with 'file_name_you_chose'
.查找替换
Ctrl+F
Ctrl+H
Ctrl+Shift+F
*
to match one or more characters in a path segment?
to match on one character in a path segment**
to match any number of path segments ,including none{}
to group conditions (e.g. {**/*.html,**/*.txt}
matches all html and txt files)[]
to declare a range of characters to match (e.g., example.[0-9]
to match on example.0
,example.1
, …F11
Ctrl + =
/Ctrl + -
Ctrl+B
Ctrl+Shift+E
Ctrl+Shift+F
Ctrl+Shift+G
Ctrl+Shift+D
Ctrl+Shift+U
Ctrl+Shift+V
Ctrl+Shift+P
,输入 autof1
后输入 theme
回车,然后上下键即可预览
User settings
是全局设置,任何vs Code打开的项目都会依此配置。默认存储在:
Windows: %APPDATA%\Code\User\settings.json
Mac: $HOME/Library/Application Support/Code/User/settings.json
Linux: $HOME/.config/Code/User/settings.json
Workspace settings
是本工作区的设置,会覆盖上边的配置存储在工作区的.vocode
文件夹下。
几乎所有设定都在settings.json
里,包括
- Editor Configuration - font, word wrapping, tab size, line numbers, indentation, …
- Window Configuration - restore folders, zoom level, …
- Files Configuration - excluded file filters, default encoding, trim trailing whitespace, …
- File Explorer Configuration - encoding, WORKING FILES behavior, …
- HTTP Configuration - proxy settings
- Search Configuration - file exclude filters
- Git Configuration - disable Git integration, auto fetch behavior
- Telemetry Configuration - disable telemetry reporting, crash reporting
- HTML Configuration - HTML format configuration
- CSS Configuration - CSS linting configuration
- JavaScript Configuration - Language specific settings
- JSON Configuration - Schemas associated with certain JSON files
- Markdown Preview Configuration - Add a custom CSS to the Markdown preview
- Less Configuration - Control linting for Less
- Sass Configuration - Control linting for Sass
- TypeScript Configuration - Language specific settings
- PHP Configuration - PHP linter configuration
例如可以修改让vscode认识.glsl
扩展名
{
// Configure file associations to languages (e.g. "*.extension": "html"). These have precedence over the default associations of the languages installed.
"files.associations": {
"*.glsl": "shaderlab"
}
}
File -> Preferences -> Keyboard Shortcuts
修改keybindings.json
,我的显示在这里C:\Users\Administrator\AppData\Roaming\Code\User\keybindings.json
// Place your key bindings in this file to overwrite the defaults
[
//ctrl+space被切换输入法快捷键占用
{
"key": "ctrl+alt+space",
"command": "editor.action.triggerSuggest",
"when": "editorTextFocus"
},
// ctrl+d删除一行
{
"key": "ctrl+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+k", //与删除一行的快捷键互换了:)
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
//ctrl+shift+/多行注释
{
"key":"ctrl+shift+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus"
}
]
然后输入语言,例如我这里输入 typescript
由于每次输入箭头函数() => {}
太烦了,我这里加入一段加入一段
"arrow function": {
"prefix": "func",
"body": [
"(${e}) => {$1}"
],
"description": "arrow function"
}
保存后,下次输入func
的时候就会自动出来箭头函数了
C:\Users\Administrator\AppData\Roaming\Code\User\keybindings.json
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+alt+space", "command": "editor.action.triggerSuggest",
"when": "editorTextFocus" }
]
tsconfig.json
{}
,在大括号中间 ctrl + alt + space
(上边的自定义键盘){
"compilerOptions": {
"target": "ES5",
"module": "amd",
"sourceMap": true
}
}
.ts
文件了Ctrl+Shift+P
输入 Configure Task Runner
Ctrl+Shift+B
Install typings to bring in the .d.ts files which power javascript intellisense.
npm install typings --global
# Search for definitions.
typings search tape
# Find an available definition (by name).
typings search --name react
# Install typings (DT is "ambient", make sure to enable the flag and persist the selection in `typings.json`).
typings install react --ambient --save
install will create a typings folder. VS Code will reference the .d.ts files for intellisense.
新版本支持插件安装了
插件市场 https://marketplace.visualstudio.com/#VSCode
F1
输入 extensions
点击第一个开始安装或升级,或者也可以 Ctrl+P
输入 ext install
进入
点击第二个会列出已经安装的扩展,可以从中卸载
ext install
我在用的插件(期待更新…)
docthis 插件可以自动添加JSDoc注释。
ctrl + p
后 输入ext install docthis
可直接安装。
安装后连续两次 Ctrl+Alt+D
即可在光标处插入注释。
详细: https://marketplace.visualstudio.com/items?itemName=joelday.docthis
vscode-todo 显示todo列表
ctrl + p
后 输入ext install vscode-todo
可直接安装。
详细: https://marketplace.visualstudio.com/items?itemName=MattiasPernhult.vscode-todo
参考:
https://www.cnblogs.com/parry/p/vscode_top_ten_plugins.html
https://devopen.club/course/vscode
http://www.wfun.com/news/902655.html
https://blog.csdn.net/qq_22338889/article/details/78790964