{ "auto_complete":true, "auto_match_enabled":true }
好像是不起作用,须要等一段时间就ok了。
div.wrapper>div.header+div.main+div.footer然后按 tab键 瞬间变成
<div class="wrapper"> <div class="header"></div> <div class="main"></div> <div class="footer"></div> </div>
>包括子元素 .类名 #id名 +兄弟元素
*n 表示这个标签反复出现n次
如:
ul>li*5
<ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul>
html>(head>title)+body
<html> <head> <title></title> </head> <body> </body> </html>
原文:http://www.cnblogs.com/lxjshuju/p/6932626.html