当我用emmet在sublime text 2中键入以下内容时:

.one>label{foo}+input:r

我得到一长行代码
<div class="one"><label for="">foo</label><input type="radio" name="" id=""></div>

有什么办法可以使emmet/sublime代替此样式?
<div class="one">
    <label for="">foo</label>
    <input type="radio" name="" id="">
</div>

我尝试使用snippets.json失败

最佳答案

使用以下内容创建Packages/User/Emmet.sublime-settings

{
    // Output profiles for syntaxes
    // http://docs.emmet.io/customization/syntax-profiles/
    "syntaxProfiles": {
        "html": {
            "tag_nl": true
            // "tag_nl_leaf": true
        }
    }
}

并检查documentation以获取有关tag_nl,tag_nl_leaf和其他选项的更多信息。

关于html - 将emmet自动完成功能扩展为精美文字中的多行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21775954/

10-10 10:30