Skip to content

Instantly share code, notes, and snippets.

@CristianLlanos
Created October 13, 2015 14:51
Show Gist options
  • Save CristianLlanos/f52bc2542f491103afff to your computer and use it in GitHub Desktop.
Save CristianLlanos/f52bc2542f491103afff to your computer and use it in GitHub Desktop.
My sublime keymaps
[
{ "keys": ["ctrl+alt+n"], "command": "new_snippet" },
{ "keys": ["n", "n"], "command": "advanced_new_file",
"context": [{ "key": "setting.command_mode", "operand": true }] },
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_folder" },
{ "keys": ["ctrl+b"], "command": "goto_definition_scope" },
{ "keys": ["alt+enter"], "command": "find_use" },
{ "keys": ["f", "f", "e"], "command": "expand_fqcn" },
{ "keys": ["j", "j"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment