sublim 配置 用户默认绑定的格式化文本快捷键


 
//在绑定用户绑定配置中 加入 激活每个字母提示!
"auto_complete": true,"auto_match_enabled": true,
"auto_complete_triggers": [ {"selector": "text.html", "characters": "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.<"} ]













//在绑定用户默认按键中json [] 中加入 如有其它配置,加‘,’ 分割 格式化

{
 "keys": ["ctrl+shift+r"],
 "command": "reindent", 
 "args": {
    "single_line": false
    }
}
原文地址:https://www.cnblogs.com/embaobao/p/10720844.html