配置sublime-text3按tab跳出括号

声明:本文为转载内容。

原文地址:https://blog.csdn.net/q3818908/article/details/79873731

按右方向键,可以跳出括号,但离得太远按起来太麻烦影响手速,我们可以实现通过按tab自动跳过右括号,右引号。

Preferences->Key Bindings

 

{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
    [
        { "key": "following_text", "operator": "regex_contains", "operand": "^[)\\]\\>\\'\\\"\\}]", "match_all": true }
    ]
},

 

posted on 2020-06-30 16:16  blackangeldsf  阅读(440)  评论(0)    收藏  举报

导航