Created
March 25, 2016 22:06
-
-
Save matthewjberger/b6cc8f9aae2fc6dbe264 to your computer and use it in GitHub Desktop.
Sublime Vintage mode keymappings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
// 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