VSCode Awesome Extensions
2020-09-16 10:24:01
Markdown All In One
-
convert markdown to html
-
open preview
-
local package is modified to set viewpoint and body width
- /Users/jessie/.vscode/extensions/yzhang.markdown-all-in-one-3.3.0/media/checkbox.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18.task-list-item {
list-style-type: none;
}
.task-list-item-checkbox {
margin-left: -20px;
vertical-align: middle;
}
body {
width: 80%;
margin: 5%;
}
@media screen and (max-width: 980px) {
body {
width: 90%;
margin: 5%;
}
}- /Users/jessie/.vscode/extensions/yzhang.markdown-all-in-one-3.3.0/dist/extension.js
addd meta to the file
charset 1
2
3
4
5
6<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="_9KLe1iHyEfvIrRkUAOtxNy894a9SYBrMDcR77H1Cjw" />
<meta name="baidu-site-verification" content="uxBHixVe7c" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keyword" content="">
Insert Date String
cmd + shift + i, insert date string
VSCode shortcuts
- Toggle sidebar: ctrl/cmd + B
- Toggle Terminal: ctrl/cmd + `
- Open settings: ctrl/cmd + ,
- Quick open a file: ctrl/cmd + P
- Tab through open files: ctrl + tab
- Move file to split window: Ctrl/cmd + \
- Close file: Ctrl/cmd + W
- Search/Replace file: Ctrl/cmd + F
- Global search/ Replace: Ctrl/cmd + Shift + F
- Open command pallete: Ctrl/cmd + Shift + P
- Toggle comments: Ctrl/cmd + /
- Navigate Text: Hold down alt/ctrl
- Copy, cut and paste: ctrl+c, ctrl+v, ctrl+x (for a whole line, just keep the cursor on the line)
- Duplicate line: Shift+option+up/down; Shift+alt+up/down
- Mutiple cursors: Ctrl+cmd + click
- Select word: Ctrl/cmd + D
- Select all instance of a selected word: Ctrl/cmd + Shift + L
- Rename symbol: F2
- Jump to funciton defination: ctrl/cmd + click
- Zen mode: ctl/cmd + K Z
赞赏一下