如何设置热键将光标移出引号/括号?

cva*_*vax 6 visual-studio-code

在Sublime中,我可以轻松设置一个更复杂的热键,让我按Enter键退出引号和括号.它在下面:

    // Move out of single and double quotes with `Enter`
    {
        "keys": ["enter"],
        "command": "move",
        "args": {"by": "characters", "forward": true},
        "context": [
            { "key": "following_text", "operator": "regex_match", "operand": "(?:\"|').*", "match_all": true },

            { "key": "preceding_text", "operator": "regex_contains", "operand": "(?:\"|')", "match_all": true }
        ]
    },
Run Code Online (Sandbox Code Playgroud)

在VS Code中,有没有办法实现这个目标?这keybindings.json会移动光标,但是当我不想要时它也是活动的.谢谢.

    { "key": "enter",    "command": "cursorRight",
                         "when": "editorTextFocus" }
Run Code Online (Sandbox Code Playgroud)

Rob*_*ens 5

查看此扩展程序可满足您的需求-https://marketplace.visualstudio.com/items?itemName=albert.TabOut

您可以在这里找到实现-https: //github.com/albertromkes/tabout