Skip to content

Instantly share code, notes, and snippets.

@vaskaloidis
Created January 11, 2016 09:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vaskaloidis/2e6b40999cb50f235654 to your computer and use it in GitHub Desktop.
Save vaskaloidis/2e6b40999cb50f235654 to your computer and use it in GitHub Desktop.
Sublime Text 3 commands for command-pallete config file + command-palleate commands for extensions (like Evernote). These can be used with Command-Line Sublime Text as "subl --commmand open_evernote_note"
[
{ "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": "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" }
]
[
{ "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": "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" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment