Sublime自动跳出括号

原文

Sublime 中打开Preferences-->Key Bindings

输入:

[
{"keys": ["enter"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
    [
        { "key": "following_text", "operator": "regex_contains", "operand": "^[)\\]\\>\\'\\\"\\ %>\\}\\;\\,]", "match_all": true },
        { "key": "preceding_text", "operator": "not_regex_match", "operand": "^.*\\{$", "match_all": true  },
        { "key": "auto_complete_visible", "operator": "equal", "operand": false }
    ]
}
]

保存

你可能感兴趣的:(Sublime自动跳出括号)