2

我想让这个工作流程在 Sublime Text 2 中使用 HTML:

  1. 创建 HTML 标签(例如 ctrl + shift + W)
  2. TAB(将光标放在内容区域)
  3. 进入

结果是(单词“HERE”表示光标应该在哪里):

<p>
    HERE
</p>

但相反,这就是我得到的(“这里”这个词仍然表示光标的位置):

<p>
HERE</p>

这要求你

  1. 输入(再次)
  2. 向上箭头 + TAB
  3. ARROW-UP + TAB(第二次)
4

1 回答 1

7

尝试在您的用户键绑定中添加以下内容。

{ "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 }
    ]
}
于 2013-04-02T04:57:52.107 回答