sublime-text3按tab跳出括号

功能

通过按tab自动跳过右括号,右引号,虽然也可以按右方向键,但离得太远按起来太麻烦

在首选项->按键绑定里添加:

{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
    [
        { "key": "following_text", "operator": "regex_contains", "operand": "^[)\]\>\'\"]", "match_all": true }
    ]
  },
转载请保留原文链接及作者
本文标题:
文章作者: LepeCoder
发布时间:
原始链接:
原文地址:https://www.cnblogs.com/lepeCoder/p/7230545.html