博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MAC sublime text 无法自动补齐标签
阅读量:4874 次
发布时间:2019-06-11

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

1: 先打开Sublime text -> Preferences -> Key bindings

 

2:添加以下代码

[  { "keys": ["tab"], "command": "expand_abbreviation_by_tab", "context":    [        { "operand": "source.js", "operator": "equal", "match_all": true, "key": "selector" },        { "match_all": true, "key": "selection_empty" },        { "operator": "equal", "operand": false, "match_all": true, "key": "has_next_field" },        { "operand": false, "operator": "equal", "match_all": true, "key": "auto_complete_visible" },        { "match_all": true, "key": "is_abbreviation" }    ]}]

如图

 

 

转载于:https://www.cnblogs.com/nelsen-chen/p/9603239.html

你可能感兴趣的文章
如何创建基本的高级队列之二:创建接收方代码
查看>>
堆表的在执行Select语句时的默认排序问题——发现问题
查看>>
oracle监听理解 命名理解
查看>>
Python3基础1
查看>>
C#高性能二进制序列化
查看>>
JS常用函数
查看>>
Python学习教程:Python3除法之真除法、截断除法和下取整对比
查看>>
CSS杂集(标准流&多行垂直居中)
查看>>
Javascript中数组与字典(即map)的使用
查看>>
php 正则匹配中文(转)
查看>>
C++不完整的类型
查看>>
实验一
查看>>
工具类 验证手机邮箱
查看>>
JavaScript 正则表达式入门教程
查看>>
jQuery调用ASP.NET的WebService
查看>>
memcached(十三)注意事项
查看>>
tomcat无法启动 startup.bat 一闪而过
查看>>
ITerms2在mac系统下的安装和配色,并和go2shell关联
查看>>
unity, copy-paste component
查看>>
nginx常见面试题1
查看>>