- Go to
Sublime Text -> Preferences -> Key Bindings
and add this to yourDefault (OSX).sublime-keymap
[
{
"keys": ["j", "j"],
"command": "_enter_normal_mode",
"args": {
"mode": "mode_insert"
},
"context": [{"key": "vi_insert_mode_aware"}]
}
]
Other great options for exit are fd
and jk
- Importantly, remember to set key repeat on for Mac, run this in your terminal
$ defaults write com.sublimetext.3 ApplePressAndHoldEnabled -bool false
Thanks!