tools: sublime冒号后缩进问题

sublime冒号后缩进自动加分号的解决办法

修改Key Bindings - User 文件

[
    { "keys": ["ctrl+shift+a"], "command": "alignment" },
    {
        "keys": ["tab"],
        "command": "insert",
        "args":
        {
            "characters": "t"
        },
        "context":
        [
            {
                "key": "preceding_text",
                "operator": "regex_contains",
                "operand": ":$",
                "match_all": true
            }
        ]
    }
]