我想让这个工作流程在 Sublime Text 2 中使用 HTML:
- 创建 HTML 标签(例如 ctrl + shift + W)
- TAB(将光标放在内容区域)
- 进入
结果是(单词“HERE”表示光标应该在哪里):
<p>
HERE
</p>
但相反,这就是我得到的(“这里”这个词仍然表示光标的位置):
<p>
HERE</p>
这要求你
- 输入(再次)
- 向上箭头 + TAB
- ARROW-UP + TAB(第二次)
我想让这个工作流程在 Sublime Text 2 中使用 HTML:
结果是(单词“HERE”表示光标应该在哪里):
<p>
HERE
</p>
但相反,这就是我得到的(“这里”这个词仍然表示光标的位置):
<p>
HERE</p>
这要求你
尝试在您的用户键绑定中添加以下内容。
{ "keys": ["enter"], "command": "insert_snippet", "args": {"contents": "\n\t$0\n"}, "context":
[
{ "key": "setting.auto_indent", "operator": "equal", "operand": true },
{ "key": "selector", "operator": "equal", "operand": "meta.scope.between-tag-pair", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
]
}