博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Sublime Enter Key Setting自动缩进设置
阅读量:6607 次
发布时间:2019-06-24

本文共 697 字,大约阅读时间需要 2 分钟。

 

复制以下代码到用户按键绑定设置,即可实现光标在标签对之间,按回车后,闭合标签换两行,光标在中间行并自动缩进。

1    { "keys": ["enter"], "command": "auto_indent_tag", "context": 2         [ 3             { "key": "setting.auto_indent", "operator": "equal", "operand": true }, 4             { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }, 5             { "key": "selector", "operator": "equal", "operand": "punctuation.definition.tag.begin", "match_all": true }, 6             { "key": "preceding_text", "operator": "regex_contains", "operand": ">$", "match_all": true }, 7             { "key": "following_text", "operator": "regex_contains", "operand": "^

 

转载于:https://www.cnblogs.com/duke-shao/p/10421273.html

你可能感兴趣的文章
图片存储类型的种类、特点、区别
查看>>
GETTING UP AND RUNNING WITH NODE.JS, EXPRESS, JADE, AND MONGODB
查看>>
MySQLs数据库建外键时自动跑到缩影处,真奇怪
查看>>
static关键字
查看>>
js 合并多个对象 Object.assign
查看>>
Java 反射机制
查看>>
Unity 碰撞检测中碰撞器与触发器的区别
查看>>
初识java
查看>>
temporary Object and destructor
查看>>
xcode - 移动手势
查看>>
细说浏览器特性检测(1)-jQuery1.4添加部分
查看>>
古中国数学家的计算力真是惊人
查看>>
Java基础-算术运算符(Arithmetic Operators)
查看>>
C#编程(四十七)----------集合接口和类型
查看>>
【转】关于大型网站技术演进的思考(十二)--网站静态化处理—缓存(4)
查看>>
积跬步,聚小流------Bootstrap学习记录(1)
查看>>
HDUPhysical Examination(贪心)
查看>>
HTML5 FileAPI
查看>>
使用tdcss.js轻松制作自己的style guide
查看>>
C++中public、protected及private用法
查看>>