VS Code最佳方式

一、安装和使用

去官网下载即可

二、快捷键

按键说明:

  • : command
  • : control
  • : shift
  • : alt(option)

2.1 vscode常用快捷键

  • ⌃ + R: 项目切换

markdown preview 功能

  • ⇧⌘V:新窗口预览markdown文件
  • ⌘K V: markdown preview side-by-side

三、插件及使用

3.1 markdown-table-formatter

markdown-table-formatter插件地址
markdown-table-formatter

快捷键: alt+shift+f

四、个人配置

4.1 个人快捷键配置

使用⌘+k s打开配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// 将键绑定放入此文件中以覆盖默认值
[
// insert date keymap from sublime
{
"command": "insertDateString.insertDateTime",
"key": "alt+f5",
"when": "editorTextFocus"
},
{
"command": "insertDateString.insertDate",
"key": "f5",
"when": "editorTextFocus"
},
{
"key": "ctrl+f5",
"command": "insertDateString.insertTimestamp"
},
{
"key": "cmd+ctrl+p",
"command": "workbench.action.openRecent"
},
{
"key": "cmd+y",
"command": "redo",
"when": "editorTextFocus && !editorReadonly"
}
]

4.2 设置在命令行中打开VSC

配置 .bash_profile 或者 .zshrc 文件:

1
2
3
4
alias vsc='/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code';
VSC_BIN='/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin';
PATH=$VSC_BIN:$PATH;
export PATH;

然后让配置生效,在控制台执行:

1
2
3
4
5
6
# 如果没有安装 zsh,可能是 ~/.bash_profile
source ~/.zshrc
# 这个时候就可以在全局打开了:
# -a 的意思是不要新开窗口,在当前已经打开的 vsc 中打开文件
vsc path/to/file.ext -a