Skip to content

Instantly share code, notes, and snippets.

@JonathanBeech
Created August 20, 2012 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonathanBeech/3402121 to your computer and use it in GitHub Desktop.
Save JonathanBeech/3402121 to your computer and use it in GitHub Desktop.
Sublime Text: sublime keymap
[
{ "keys": ["ctrl+super+n"], "command": "new_snippet" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["n", "n"], "command": "advanced_new_file",
"context": [{"key": "setting.command_mode", "operand": true}]},
{ "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