快速编写代码小技巧-----sublime 跳出括号和‘’和“”

打开菜单栏 –>Preferences –> Key Bindings-User

输入如下文本,保存

 

[
    {"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 跳出括号和‘’和“”)