-
Notifications
You must be signed in to change notification settings - Fork 0
/
KeyBindings.txt
62 lines (61 loc) · 1.57 KB
/
KeyBindings.txt
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// NOTE: Follow's json syntax except includes ability to comment with double forward slashes.
{
"shortcuts": [
{
// Hide cell outputs
"command": "notebook:hide-cell-outputs",
"keys": [
"L"
],
"selector": ".jp-Notebook:focus"
},
{
// Show cell outputs
"command": "notebook:show-cell-outputs",
"keys": [
"Shift L"
],
"selector": ".jp-Notebook:focus"
},
{
// Hide cell code
"command": "notebook:hide-cell-code",
"keys": [
"H"
],
"selector": ".jp-Notebook:focus"
},
{
// Show cell code
"command": "notebook:show-cell-code",
"keys": [
"Shift H"
],
"selector": ".jp-Notebook:focus"
},
{
// Move cell up
"command": "notebook:move-cell-up",
"keys": [
"Ctrl ArrowUp"
],
"selector": ".jp-Notebook:focus",
},
{
// Move cell down
"command": "notebook:move-cell-down",
"keys": [
"Ctrl ArrowDown"
],
"selector": ".jp-Notebook:focus",
},
{
// Move cell down
"command": "notebook:run-all-above",
"keys": [
"Ctrl Q"
],
"selector": ".jp-Notebook:focus",
},
]
}