鼠标右键sublime 以管理员身份运行 打开首选项里面的按键绑定用户 将下面的代码粘贴复制

{ "keys": ["enter"], "command": "auto_indent_tag", "context":
[
{ "key": "setting.auto_indent", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "punctuation.definition.tag.begin", "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": ">$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^</", "match_all": true },
]
},
{ "keys": ["tab"], "command": "reindent", "context":
[
{ "key": "setting.auto_indent", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^$", "match_all": true },
{ "key": "following_text", "operator": "regex_match", "operand": "^$", "match_all": true }
]
}

最新文章

  1. 常见端口 HTTP代码
  2. IIS提示“异常详细信息: System.Runtime.InteropServices.ExternalException: 无法执行程序”
  3. 如何下载Spring
  4. U-Mail邮件服务系统任意文件上传+执行漏洞(runtime缺陷与验证绕过)
  5. 转载 sqlserver 锁的概念
  6. ps一般常用的快捷键
  7. 重温XML
  8. javascript全局对象
  9. 伸展树(Splay树)的简要操作
  10. 201521123055 《Java程序设计》第7周学习总结
  11. insert时报Cannot add or update a child row: a foreign key constraint fails (`yanchangzichan`.`productstatusrecord`, CONSTRAINT `p_cu` FOREIGN KEY (`cid`) REFERENCES `customer` (`cid`))错误
  12. Spring boot(4)-应用打包部署
  13. Modbus库开发笔记之四:Modbus TCP Client开发
  14. MySql md5加密 sqlserver md5加密 C# md5加密 java md5加密
  15. Yii Restful api自定义字段
  16. js 改变颜色值
  17. js jq封装ajax方法
  18. sort sign numeric
  19. Netty 应用程序的一个一般准则:尽可能的重用 EventLoop,以减少线程创建所带来的开销。
  20. win10与子系统Ubuntu 相关配置

热门文章

  1. PHPStorm 配置本地 WebServer 运行 PHP
  2. 谁说程序员不浪漫?Python导出微信聊天记录生成爱的词云图
  3. llinux/重启/用户切换/注销
  4. Reuse Implemented Functionality 重用实现功能
  5. 【重学Git】整理提交记录
  6. Dynamics CRM - js中用webapi基于fetchxml查询遇到的问题 -- Invalid URI: The Uri scheme is too long.
  7. Linux shell--基础指令
  8. QT总结
  9. 035.[转] 获取HttpServletRequest请求Body中的内容
  10. 信号驱动式I/O