From 3e668b35230e5ae07a693db7e080a6de33fd4689 Mon Sep 17 00:00:00 2001 From: tomoyuki kashiro Date: Mon, 3 Nov 2014 17:43:09 +0900 Subject: [PATCH] add link:import for webcomponents #234 --- autoload/emmet.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/emmet.vim b/autoload/emmet.vim index 98e1ddf..76dce52 100644 --- a/autoload/emmet.vim +++ b/autoload/emmet.vim @@ -1488,6 +1488,7 @@ let s:emmet_settings = { \ 'ins': {'datetime': '${datetime}'}, \ 'link:css': [{'rel': 'stylesheet'}, g:emmet_html5 ? {} : {'type': 'text/css'}, {'href': '|style.css'}, {'media': 'all'}], \ 'link:print': [{'rel': 'stylesheet'}, g:emmet_html5 ? {} : {'type': 'text/css'}, {'href': '|print.css'}, {'media': 'print'}], +\ 'link:import': [{'rel': 'import'}, {'href': ''}], \ 'link:favicon': [{'rel': 'shortcut icon'}, {'type': 'image/x-icon'}, {'href': '|favicon.ico'}], \ 'link:touch': [{'rel': 'apple-touch-icon'}, {'href': '|favicon.png'}], \ 'link:rss': [{'rel': 'alternate'}, {'type': 'application/rss+xml'}, {'title': 'RSS'}, {'href': '|rss.xml'}],