forked from aziz/PlainNotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault (OSX).sublime-keymap
35 lines (26 loc) · 1.58 KB
/
Default (OSX).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
[
{ "keys": ["f4"], "command": "notes_list" },
{ "keys": ["ctrl+f4"], "command": "notes_buffer" },
{ "keys": ["super+f4"], "command": "notes_new" },
{ "keys": ["enter"], "command": "notes_buffer_open", "context":
[{ "key": "selector", "operator": "equal", "operand": "text.notes_buffer" }]
},
{ "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" }]
}
]