本文键盘快捷键为 Windows,其它渠道可参考 官方文档

快速翻开文件

键盘快捷键:Ctrl P

快速翻开最近翻开过的(文件夹和作业区)

键盘快捷键:Ctrl R

Visual Studio Code 实用技巧

指令行

VS Code 拥有功能强大的指令行界面(CLI),能够自定义启动编辑器的方法,以支持各种情况。

# open code with current directory
code .

# open the current directory in the most recently used code window
code -r .

# open diff editor
code --diff <file1> <file2>

# open file at specific line and column <file:line[:character]>
code --goto package.json:10:5

# see help options
code --help

多光标挑选

要在恣意位置增加光标,运用 Alt Click(macOS 上运用 Option Click)。

Visual Studio Code 实用技巧

要在当时位置上方或下方设置光标,请运用:

键盘快捷键:Ctrl Alt Up 或者 Ctrl Alt Down

你能够运用 Ctrl Shift L 在当时选区的所有呈现处增加其他光标。

Visual Studio Code 实用技巧

如果不想/增加当时选区的所有呈现项,能够运用 Ctrl D 代替。这只会挑选所选项之后的下一个呈现项,因而你能够逐个增加所选项。

Visual Studio Code 实用技巧

向上/下复制行

键盘快捷键:Shift Alt Up 或者 Shift Alt Down

向上/下移动行

键盘快捷键:Alt Up 或者 Alt Down

Visual Studio Code 实用技巧

前往文件中的符号

键盘快捷键:Ctrl shift O

Visual Studio Code 实用技巧

导航至指定行

键盘快捷键:Ctrl G

Visual Studio Code 实用技巧

文本转化指令

你能够运用指令面板中的变换指令将选定文本变换为大写、小写和标题大小写。

Visual Studio Code 实用技巧

选中当时行

键盘快捷键:Ctrl L

Visual Studio Code 实用技巧

查找所有引用

挑选一个符号,然后键入 Shift Alt F12 翻开 References 视图,该视图中会显示文件的所有符号。

Visual Studio Code 实用技巧

Git 分支切换

通过状态栏轻松切换 Git 分支

Visual Studio Code 实用技巧

总结

本文介绍了一些 Visual Studio Code 实用技巧,更多内容请检查 官方文档