学会用好 Visual Studio Code

Visual Studio Code 是个牛逼的编辑器,启动非常快,完全可以用来代替其他文本文件编辑工具。又可以用来做开发,支持各种语言,相比其他 IDE,轻量级完全可配置还集成 Git 感觉非常的适合前端开发,是微软亲生的想必 TypeScript 会支持的非常好。 所以我仔细研究了一下文档未来可能会作为主力工具使用。

主命令框 Command Palette

最重要的功能就是 F1Ctrl+Shift+P 打开的命令面板了,在这个命令框里可以执行 VSCode 的任何一条命令,可以查看每条命令对应的快捷键,甚至可以关闭这个编辑器。

按一下Backspace会进入到Ctrl+P模式里

Ctrl+P 模式

Ctrl+P下输入>又可以回到主命令框 Ctrl+Shift+P模式。

Ctrl+P窗口下还可以

  • 直接输入文件名,快速打开文件
  • ? 列出当前可执行的动作
  • ! 显示 Errors 或 Warnings,也可以Ctrl+Shift+M
  • : 跳转到行数,也可以Ctrl+G直接进入
  • @ 跳转到 symbol(搜索变量或者函数),也可以Ctrl+Shift+O直接进入
  • @:根据分类跳转 symbol,查找属性或函数,也可以Ctrl+Shift+O后输入:进入
  • # 根据名字查找 symbol,也可以Ctrl+T

常用快捷键


编辑器与窗口管理

同时打开多个窗口(查看多个项目)

  • 打开一个新窗口: Ctrl+Shift+N
  • 关闭窗口: Ctrl+Shift+W

同时打开多个编辑器(查看多个文件)

  • 新建文件 Ctrl+N
  • 历史打开文件之间切换 Ctrl+TabAlt+LeftAlt+Right
  • 切出一个新的编辑器(最多 3 个)Ctrl+\,也可以按住 Ctrl 鼠标点击 Explorer 里的文件名
  • 左中右 3 个编辑器的快捷键Ctrl+1 Ctrl+2 Ctrl+3
  • 3 个编辑器之间循环切换 Ctrl+`
  • 编辑器换位置,Ctrl+k然后按LeftRight

代码编辑

格式调整

  • 代码行缩进Ctrl+[Ctrl+]
  • 折叠打开代码块 Ctrl+Shift+[Ctrl+Shift+]
  • Ctrl+C Ctrl+V如果不选中,默认复制或剪切一整行
  • 代码格式化:Shift+Alt+F,或Ctrl+Shift+P后输入format code
  • 修剪空格Ctrl+Shift+X
  • 上下移动一行: Alt+UpAlt+Down
  • 向上向下复制一行: Shift+Alt+UpShift+Alt+Down
  • 在当前行下边插入一行Ctrl+Enter
  • 在当前行上方插入一行Ctrl+Shift+Enter

光标相关

  • 移动到行首:Home
  • 移动到行尾:End
  • 移动到文件结尾:Ctrl+End
  • 移动到文件开头:Ctrl+Home
  • 移动到后半个括号 Ctrl+Shift+]
  • 选中当前行Ctrl+i
  • 选择从光标到行尾Shift+End
  • 选择从行首到光标处Shift+Home
  • 删除光标右侧的所有字Ctrl+Delete
  • Shrink/expand selection: Shift+Alt+LeftShift+Alt+Right
  • Multi-Cursor:可以连续选择多处,然后一起修改,Alt+Click添加 cursor 或者Ctrl+Alt+DownCtrl+Alt+Up
  • 同时选中所有匹配的Ctrl+Shift+L
  • Ctrl+D下一个匹配的也被选中(被我自定义成删除当前行了,见下边Ctrl+Shift+K)
  • 回退上一个光标操作Ctrl+U

重构代码

  • 跳转到定义处:F12
  • 定义处缩略图:只看一眼而不跳转过去Alt+F12
  • 列出所有的引用:Shift+F12
  • 同时修改本文件中所有匹配的:Ctrl+F12
  • 重命名:比如要修改一个方法名,可以选中后按F2,输入新的名字,回车,会发现所有的文件都修改过了。
  • 跳转到下一个 Error 或 Warning:当有多个错误时可以按F8逐个跳转
  • 查看 diff 在 explorer 里选择文件右键 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
  • zoomIn/zoomOut:Ctrl + =/Ctrl + -
  • 侧边栏显/隐:Ctrl+B
  • 侧边栏 4 大功能显示:
  • Show Explorer Ctrl+Shift+E
  • Show SearchCtrl+Shift+F
  • Show GitCtrl+Shift+G
  • Show DebugCtrl+Shift+D
  • Show OutputCtrl+Shift+U
  • 预览 markdownCtrl+Shift+V

其他

  • 自动保存:File -> AutoSave ,或者Ctrl+Shift+P,输入 auto

皮肤预览

f1后输入 theme 回车,然后上下键即可预览

自定义 settings.json

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扩展名

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

Text

// 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

由于每次输入箭头函数() => {}太烦了,我这里加入一段加入一段

Text

 "arrow function": {
		"prefix": "func",
		"body": [
			"(${e}) => {$1}"
		],
		"description": "arrow function"
	}

保存后,下次输入func的时候就会自动出来箭头函数了

配置 TypeScript 环境


  1. 首先覆盖默认 ctrl + space 快捷键,因为这个快捷键被输入法切换占用了 C:\Users\Administrator\AppData\Roaming\Code\User\keybindings.json 加入

Text

// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+alt+space",            "command": "editor.action.triggerSuggest",
                                     "when": "editorTextFocus" }
]
  1. File - Open Folder 打开项目的目录
  2. 创建 tsconfig.json
  3. 输入{} ,在大括号中间 ctrl + alt + space (上边的自定义键盘)

  1. 输入

Text

{
    "compilerOptions": {
        "target": "ES5",
        "module": "amd",
        "sourceMap": true
    }
}
  1. 可以创建.ts文件了
  2. 配置 TaskRunner Ctrl+Shift+P 输入 Configure Task Runner
  3. Run Task Ctrl+Shift+B

安装 typings

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

参考: