Skip to content

Instantly share code, notes, and snippets.

@manafire
Created August 16, 2013 16:07
Show Gist options
  • Save manafire/6251199 to your computer and use it in GitHub Desktop.
Save manafire/6251199 to your computer and use it in GitHub Desktop.
Sublime Keymap
[
{ "keys": ["ctrl+shift+r"], "command": "reindent" , "args": {"single_line": false}},
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
// vintage - mode control
// exit insert mode
{ "keys": ["j", "j"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
// vintage - delete forward
{ "keys": ["ctrl+l"], "command": "right_delete",
"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