如何在Sublime Text中进入Vintage Command模式

Mat*_*ham 3 sublimetext2

我在OSX上.我很确定启用了Vintage模式(我在状态栏中看到INSERT MODE),但我无法进入COMMAND模式.我怎么做?转义键不起作用,正如我在一些教程中看到的那样.谢谢!

Bib*_*ath 10

文档 -

Vintage starts in insert mode by default. This can be changed by adding:

"vintage_start_in_command_mode": true

to your User Settings.
Run Code Online (Sandbox Code Playgroud)

然后 -

if you'd like to bind "jj" to exit insert mode, you can add this key binding:

{ "keys": ["j", "j"], "command": "exit_insert_mode",
    "context":
    [
        { "key": "setting.command_mode", "operand": false },
        { "key": "setting.is_widget", "operand": false }
    ]
}
Run Code Online (Sandbox Code Playgroud)