不能在snippets.json中扩展链接作为我的cutomization

时间:2018-03-09 14:57:56

标签: vim emmet

我希望epxpand链接到

<link type="text/css" rel="stylesheet" href="" />

并期待epxpand link:css into

<link type="text/css"  rel="stylesheet" href="style.css" media="all" />.

这是我自定义它的方法。

vim  .vim/snippets.json
"link": "<link type=\"text/css\"  rel=\"stylesheet\" href=\"\" />",
"link:css": "<link type=\"text/css\" rel=\"stylesheet\" href=\"${1:style}.css\" />"

并编辑.vimrc

let g:emmet_html5 = 0
let g:user_emmet_settings = webapi#json#decode(join(readfile(expand('~/.vim/snippets.json')), "\n")) 

我发现在我的vim-emmet中: 链接已扩展为

<link rel="stylesheet" href="" />

link:css扩展为

<link rel="stylesheet" type="text/css" href="style.css" media="all" />

为什么链接没有扩展为

<link type="text/css" rel="stylesheet" href="" />

和链接:css未展开为

<link type="text/css"  rel="stylesheet" href="style.css" />

0 个答案:

没有答案