submit tab键不能缩进了什么原因
sublime吧
全部回复
仅看楼主
level 1
思姝情 楼主
如题
2018年06月13日 03点06分 1
level 1
{ “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 },
]
}
2019年08月12日 02点08分 2
level 1
sublime,tab键缩进功能失效解决方法:preferences>package-settings>emmet>Key Bindings-User中插入以上代码
2019年08月12日 02点08分 3
level 1
ctrl+] 缩进 ctrl+[ 取消缩进
也可以选中一大段,使用这两个来整体进行缩进
2019年08月12日 02点08分 4
level 1
首选项-快捷键设置, 找到下面这行, 把 shift+tab 改成 tab
{ "keys": ["shift+tab"], "command": "insert", "args": {"characters": "\t"} },
{ "keys": ["tab"], "command": "insert", "args": {"characters": "\t"} },
2021年07月19日 02点07分 5
这样之前的选中内容行后按下Tab的行缩进,变成了选择内容被替换为"\t"制表符了[泪]
2021年08月06日 21点08分
1