forked from danielmagnussons/orgmode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-keymap
29 lines (26 loc) · 1.09 KB
/
Default.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
[
/* 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" }]
},
/* 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" }
]
},
]