diff options
author | Dave Mayo <dave_mayo@harvard.edu> | 2014-08-18 17:24:53 -0400 |
---|---|---|
committer | Dave Mayo <dave_mayo@harvard.edu> | 2014-08-18 17:24:53 -0400 |
commit | c13edce91b17dda6bd1470aa52efd7ace8cc5121 (patch) | |
tree | e0513776b8a038675dbdc65cb3af245a0e87a42a | |
parent | 5c5ae583a84c2609e03a2a6371b292f5aec7f7f8 (diff) | |
download | emmet-mode-c13edce91b17dda6bd1470aa52efd7ace8cc5121.tar.lz emmet-mode-c13edce91b17dda6bd1470aa52efd7ace8cc5121.tar.xz emmet-mode-c13edce91b17dda6bd1470aa52efd7ace8cc5121.zip |
Forgot to add snippets.json
-rw-r--r-- | conf/snippets.json | 114 |
1 files changed, 57 insertions, 57 deletions
diff --git a/conf/snippets.json b/conf/snippets.json index 0f21c41..94228b1 100644 --- a/conf/snippets.json +++ b/conf/snippets.json @@ -582,7 +582,7 @@ "wfsm:n": "-webkit-font-smoothing:none;" } }, - + "sass": { "snippets": { "@m": "@media ${1:screen}\n\t|\n", @@ -609,63 +609,63 @@ }, "aliases": { - "a:link": "a href=http://", - "a:mail": "a href=mailto:", - "bdo:r": "bdo dir=rtl", - "bdo:l": "bdo dir=ltr", - "link:css": "link rel=stylesheet href=style.css", - "link:print": "link rel=stylesheet href=print.css media=print", - "link:favicon": "link icon rel=shortcut type=image/x-icon href=favicon.ico", - "link:touch": "link rel=apple-touch-icon href=favicon.png", - "link:rss": "link rel=alternate type=application/rss+xml title=RSS href=rss.xml", - "link:atom": "link rel=alternate type=\"application/atom+xml\" title=Atom href=atom.xml", - "meta:utf": "meta http-equiv=Content-Type content=\"text/html;charset=UTF-8\"", - "meta:win": "meta http-equiv=Content-Type content=\"text/html;charset=windows-1251\"", - "meta:vp": "meta name=viewport content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\"", - "meta:compat": "meta http-equiv=X-UA-Compatible content=\"IE=edge,chrome=1\"", - "script:src": "script src", - "area:d": "area shape=default href alt", - "area:c": "area shape=circle coords href alt", - "area:r": "area shape=rect coords href alt", - "area:p": "area shape=poly coords href alt", - "form:get": "form action method=get", - "form:post": "form action method=post", + "a:link": "a[href=http://]", + "a:mail": "a[href=mailto:]", + "bdo:r": "bdo[dir=rtl]", + "bdo:l": "bdo[dir=ltr]", + "link:css": "link[rel=stylesheet href=style.css]", + "link:print": "link[rel=stylesheet href=print.css media=print]", + "link:favicon": "link[icon rel=shortcut type=image/x-icon href=favicon.ico]", + "link:touch": "link[rel=apple-touch-icon href=favicon.png]", + "link:rss": "link[rel=alternate type=application/rss+xml title=RSS href=rss.xml]", + "link:atom": "link[rel=alternate type=\"application/atom+xml\" title=Atom href=atom.xml]", + "meta:utf": "meta[http-equiv=Content-Type content=\"text/html;charset=UTF-8\"]", + "meta:win": "meta[http-equiv=Content-Type content=\"text/html;charset=windows-1251\"]", + "meta:vp": "meta[name=viewport content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\"]", + "meta:compat": "meta[http-equiv=X-UA-Compatible content=\"IE=edge,chrome=1\"]", + "script:src": "script[src]", + "area:d": "area[shape=default href alt]", + "area:c": "area[shape=circle coords href alt]", + "area:r": "area[shape=rect coords href alt]", + "area:p": "area[shape=poly coords href alt]", + "form:get": "form[action method=get]", + "form:post": "form[action method=post]", "input:text": "input", "input:t": "input", - "input:hidden": "input type=hidden", + "input:hidden": "input[type=hidden]", "input:h": "input:hidden", - "input:search": "input type=search", - "input:email": "input type=email", - "input:url": "input type=url", - "input:password": "input type=password", + "input:search": "input[type=search]", + "input:email": "input[type=email]", + "input:url": "input[type=url]", + "input:password": "input[type=password]", "input:p": "input:password", - "input:datetime": "input type=datetime", - "input:date": "input type=date", - "input:datetime-local": "input type=datetime-local", - "input:month": "input type=month", - "input:week": "input type=week", - "input:time": "input type=time", - "input:number": "input type=number", - "input:color": "input type=color", - "input:checkbox": "input type=checkbox", + "input:datetime": "input[type=datetime]", + "input:date": "input[type=date]", + "input:datetime-local": "input[type=datetime-local]", + "input:month": "input[type=month]", + "input:week": "input[type=week]", + "input:time": "input[type=time]", + "input:number": "input[type=number]", + "input:color": "input[type=color]", + "input:checkbox": "input[type=checkbox]", "input:c": "input:checkbox", - "input:radio": "input type=radio", + "input:radio": "input[type=radio]", "input:r": "input:radio", - "input:range": "input type=range", - "input:file": "input type=file", + "input:range": "input[type=range]", + "input:file": "input[type=file]", "input:f": "input:file", - "input:submit": "input type=submit", + "input:submit": "input[type=submit]", "input:s": "input:submit", - "input:image": "input type=image src alt", + "input:image": "input[type=image src alt]", "input:i": "input:image", - "input:button": "input type=button", + "input:button": "input[type=button]", "input:b": "input:button", - "input:reset": "input type=reset", - "menu:context": "menu type=context", + "input:reset": "input[type=reset]", + "menu:context": "menu[type=context]", "menu:c": "menu:context", - "menu:toolbar": "menu type=toolbar", + "menu:toolbar": "menu[type=toolbar]", "menu:t": "menu:toolbar", - "html:xml": "html xmlns=http://www.w3.org/1999/xhtml", + "html:xml": "html[xmlns=http://www.w3.org/1999/xhtml]", "bq": "blockquote", "acr": "acronym", @@ -679,9 +679,9 @@ "colg": "colgroup", "fst": "fieldset", "btn": "button", - "btn:b": "button type=button", - "btn:r": "button type=reset", - "btn:s": "button type=submit", + "btn:b": "button[type=button]", + "btn:r": "button[type=reset]", + "btn:s": "button[type=submit]", "optg": "optgroup", "opt": "option", "tarea": "textarea", @@ -701,16 +701,16 @@ "out": "output", "det": "details", "cmd": "command", - "doc": "html>(head>meta charset=UTF-8+title{Document})+body", - "doc4": "html>(head>meta http-equiv=\"Content-Type\" content=\"text/html;charset=UTF-8\"+title{Document})", + "doc": "html>(head>meta[charset=UTF-8]+title{Document})+body", + "doc4": "html>(head>meta[http-equiv=\"Content-Type\" content=\"text/html;charset=UTF-8\"]+title{Document})", "!": "html:5", - "html:4t": "!!!4t+doc4 lang=en", - "html:4s": "!!!4s+doc4 lang=en", - "html:xt": "!!!xt+doc4 xmlns=http://www.w3.org/1999/xhtml xml:lang=en", - "html:xs": "!!!xs+doc4 xmlns=http://www.w3.org/1999/xhtml xml:lang=en", - "html:xxs": "!!!xxs+doc4 xmlns=http://www.w3.org/1999/xhtml xml:lang=en", - "html:5": "!!!+doc lang=en", + "html:4t": "!!!4t+doc4[lang=en]", + "html:4s": "!!!4s+doc4[lang=en]", + "html:xt": "!!!xt+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=en]", + "html:xs": "!!!xs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=en]", + "html:xxs": "!!!xxs+doc4[xmlns=http://www.w3.org/1999/xhtml xml:lang=en]", + "html:5": "!!!+doc[lang=en]", "ol+": "ol>li", "ul+": "ul>li", |