-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
57 lines (55 loc) · 1.44 KB
/
settings.js
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
module.exports = {
nav: {
_group: true,
_type: 'keyboard-shortcut',
movementStyle: {
value: 'flat',
options: [
['Org-mode style', 'org'],
['Flat workflowy style', 'flat']
],
type: 'radio',
description: 'style of moving items up and down. Org will jump past items of the same level'
},
goUp: {
value: 'up|ctrl E',
description: 'select the previous item'
},
goDown: {
value: 'down|ctrl D',
description: 'select the next item'
},
moveUp: {
value: 'alt up|alt W',
description: 'move the current item up'
},
moveDown: {
value: 'alt down|alt S',
description: 'move the current item down'
},
moveLeft: {
value: 'alt left|alt A',
description: 'move the current item left'
},
moveRight: {
value: 'alt right|alt D',
description: 'move the current item right'
},
editTags: {
value: 'ctrl space',
description: 'edit the tags of the current item'
},
newAfter: {
value: 'return',
description: 'Create a new item after the current one, splitting the current one at the cursor'
},
newChild: {
value: 'alt return',
description: 'Create a new item as the first child of the current one'
},
newLine: {
value: 'shift return',
description: 'Insert a newline into the current title (must include "return" to work atm)'
}
}
};