VSCode 配置

Intro

VSCode的一些配置

Config

default settings: 是VSCode的默认配置文件.

user settings: 是用户级别的配置文件, 保存在~下.

workspace settings: 工作区配置文件, 在项目根目录下.vscode文件夹中.

Keymap

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

All command: ctrl + p
view terminal: cmd + t
new terminal: cmd + shift + t

split right: cmd + d
split down: cmd + shift + d

view right: cmd + alt + right
...

move line up: cmd + shift + up
move line down: cmd + shift + down

quick open previous tab: ctrl + tab

python run: ctrl + r
python debug: ctrl + d