Skip to content

Instantly share code, notes, and snippets.

@dyon
Created December 30, 2013 16:41
Show Gist options
  • Save dyon/8184472 to your computer and use it in GitHub Desktop.
Save dyon/8184472 to your computer and use it in GitHub Desktop.
Sublime Text custom Vintage keymaps
[
/* Vintage mode keybindings */
// Quick exit to command mode
{ "keys": ["j", "k"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
// Quick save
{ "keys": [",", "w"], "command": "save",
"context":
[
{ "key": "setting.command_mode", "operand": true },
{ "key": "setting.is_widget", "operand": false }
]
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment