Skip to content

Instantly share code, notes, and snippets.

@matthewjberger
Created March 25, 2016 22:06
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 matthewjberger/b6cc8f9aae2fc6dbe264 to your computer and use it in GitHub Desktop.
Save matthewjberger/b6cc8f9aae2fc6dbe264 to your computer and use it in GitHub Desktop.
Sublime Vintage mode keymappings
[
// jk to exit insert mode
{ "keys": ["j", "k"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
// ,space to save the file
{ "keys": [",", " "], "command": "save",
"context": [{"key": "setting.command_mode", "operand": true }]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment