-
Notifications
You must be signed in to change notification settings - Fork 70
/
Default (Windows).sublime-keymap
32 lines (29 loc) · 1.24 KB
/
Default (Windows).sublime-keymap
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
[
/* Orgmode */
{ "keys": ["enter"], "command": "orgmode_toggle_checkbox", "context":
[{ "key": "selector", "operator": "equal", "operand": "orgmode.checkbox" }]
},
{ "keys": ["enter"], "command": "orgmode_recalc_checkbox_summary", "context":
[{ "key": "selector", "operator": "equal", "operand": "orgmode.checkbox.summary" }]
},
{ "keys": ["enter"], "command": "orgmode_open_link", "context":
[{ "key": "selector", "operator": "equal", "operand": "orgmode.link" }]
},
{ "keys": ["enter"], "command": "orgmode_cycle_internal_link", "context":
[{ "key": "selector", "operator": "equal", "operand": "orgmode.link.internal" }]
},
{ "keys": ["enter"], "command": "orgmode_cycle_todo", "context":
[{ "key": "selector", "operator": "equal", "operand": "orgmode.todo" }]
},
/* Navigation */
{ "keys": ["alt+left"], "command": "navigation_history_back"},
{ "keys": ["alt+right"], "command": "navigation_history_forward"},
/* Helpit */
{ "keys": ["alt+f1"], "command": "help_it" },
/* Fold headlines */
{ "keys": ["tab"], "command": "orgmode_folding", "context":
[
{ "key": "selector", "operator": "equal", "operand": "orgmode.headline" }
]
}
]