-
Notifications
You must be signed in to change notification settings - Fork 71
/
Default (Windows).sublime-keymap
53 lines (43 loc) · 2.43 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[
// General Keymaps
{ "keys": ["f4"], "command": "notes_list" },
{ "keys": ["ctrl+f4"], "command": "notes_buffer" },
{ "keys": ["super+f4"], "command": "notes_new" },
{ "keys": ["f1"], "command": "jotter" },
// Notes: Index keymaps
{ "keys": ["enter"], "command": "notes_buffer_open", "context":
[{ "key": "selector", "operator": "equal", "operand": "text.notes_buffer" }]
},
{ "keys": ["enter"], "command": "note_open_url", "context":
[{ "key": "selector", "operator": "equal", "operand": "text.html.markdown.note meta.link.inline.markdown | text.html.markdown.note meta.link.inet.markdown | text.html.markdown.note meta.link.reference.def.markdown" }]
},
{ "keys": ["enter"], "command": "note_preview_image", "context":
[{ "key": "selector", "operator": "equal", "operand": "text.html.markdown.note meta.image.inline.markdown" }]
},
// Notes: Jotter keymaps
{ "keys": ["escape"], "command": "save_jot_and_hide_panel", "context":
[
{ "key": "panel_visible", "operator": "equal", "operand": true },
{ "key": "panel", "operator": "equal", "operand": "output.jotter" }
]
},
// Note Extra Features: TODO and HEADING FOLDING
{ "keys": ["tab"], "command": "note_smart_folding", "context":
[{ "key": "selector", "operator": "equal", "operand": "(markup.heading.1.markdown.note | markup.heading.2.markdown.note | markup.heading.3.markdown.note| markup.heading.4.markdown.note| markup.heading.5.markdown.note| markup.heading.6.markdown.note)" }]
},
{ "keys": ["super+ctrl+alt+-"], "command": "note_global_folding", "context":
[{ "key": "selector", "operator": "equal", "operand": "text.html.markdown.note" } ]
},
{ "keys": ["ctrl+enter"], "command": "note_smart_new_line", "context":
[{ "key": "selector", "operator": "equal", "operand": "(markup.heading.1.markdown.note | markup.heading.2.markdown.note | markup.heading.3.markdown.note| markup.heading.4.markdown.note| markup.heading.5.markdown.note| markup.heading.6.markdown.note)" } ]
},
{ "keys": ["super+enter"], "command": "note_todo_pending", "context":
[{ "key": "selector", "operator": "equal", "operand": "text.html.markdown.note" }]
},
{ "keys": ["super+d"], "command": "note_todo_done", "context":
[{ "key": "selector", "operator": "equal", "operand": "markup.list.unnumbered.todo.markdown" }]
},
{ "keys": ["control+c"], "command": "note_todo_cancel", "context":
[{ "key": "selector", "operator": "equal", "operand": "markup.list.unnumbered.todo.markdown" }]
}
]