forked from bordaigorl/sublime-evernote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
39 lines (39 loc) · 2.72 KB
/
Default.sublime-commands
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
[
{ "command": "send_to_evernote", "caption": "Evernote: Send to Evernote as new note" },
{ "command": "send_to_evernote", "args": {"clip": true}, "caption": "Evernote: Clip to Evernote as new note" },
{ "command": "open_evernote_note", "caption": "Evernote: Open Evernote Note" },
{ "command": "view_in_evernote_webapp", "caption": "Evernote: View Note in Web App" },
{ "command": "view_in_evernote_client", "caption": "Evernote: View Note in Evernote client" },
{ "command": "open_evernote_note", "args": {"by_searching": true}, "caption": "Evernote: Search Note" },
{ "command": "open_evernote_note", "args": {"max_notes": 10, "by_searching": "*", "order": "updated", "ascending": false}, "caption": "Evernote: List recent notes" },
{ "command": "open_evernote_note", "args": {"note_guid": "prompt"}, "caption": "Evernote: Open Note From Link or ID..." },
{ "command": "attach_to_evernote_note", "caption": "Evernote: Attach current file to a note" },
{ "command": "insert_link_to_evernote_note", "caption": "Evernote: Insert link to a note (browse)" },
{ "command": "insert_link_to_evernote_note", "args": {"by_searching": true}, "caption": "Evernote: Insert link to a note (search)" },
{ "command": "insert_link_to_evernote_note", "args": {"max_notes": 10, "by_searching": "*", "order": "updated", "ascending": false}, "caption": "Evernote: Insert link to a note (recent)" },
{ "command": "list_linked_evernote_notes", "caption": "Evernote: List linked notes" },
{
"caption": "Evernote Settings: User",
"command": "open_file", "args":
{
"file": "${packages}/User/Evernote.sublime-settings"
}
},
{
"caption": "Evernote Settings: Default",
"command": "open_file", "args":
{
"file": "${packages}/Evernote/Evernote.sublime-settings"
}
},
{ "command": "reconfig_evernote", "caption": "Evernote Settings: Reconfigure Authorization" },
{ "command": "create_notebook", "caption": "Evernote: Create New Notebook" },
{ "command": "save_evernote_note", "caption": "Evernote: Update Evernote Note" },
{ "command": "delete_evernote_note", "caption": "Evernote: Delete Note" },
{ "command": "new_evernote_note", "caption": "Evernote: New empty note" },
{ "command": "evernote_insert_attachment", "caption": "Evernote: Insert Attachment Here" },
{ "command": "evernote_show_attachments", "caption": "Evernote: Show Attachments…" },
{ "command": "evernote_delete_attachment", "caption": "Evernote: Delete Attachment…" },
{ "command": "revert_to_evernote", "caption": "Evernote: Revert to version on Evernote" },
{ "command": "clear_evernote_cache", "caption": "Evernote: Clear Notebook Cache" }
]