diff --git a/README.mkd b/README.mkd index 43e4f25..b78a573 100644 --- a/README.mkd +++ b/README.mkd @@ -110,6 +110,32 @@ You can change the **path** to your **snippets_custom.json** according to your p [Here](http://docs.emmet.io/customization/snippets/) you can find instructions about creating your customized **snippets.json** file. +## Snippet to add meta tag for responsiveness +Update this in your .vimrc file. + + + let g:user_emmet_settings = { + \ 'variables': {'lang': 'ja'}, + \ 'html': { + \ 'default_attributes': { + \ 'option': {'value': v:null}, + \ 'textarea': {'id': v:null, 'name': v:null, 'cols': 10, 'rows': 10}, + \ }, + \ 'snippets': { + \ 'html:5': "\n" + \ ."\n" + \ ."\n" + \ ."\t\n" + \ ."\t\n" + \ ."\t\n" + \ ."\n" + \ ."\n\t${child}|\n\n" + \ ."", + \ }, + \ }, + \} + + ## Project Authors [Yasuhiro Matsumoto](http://mattn.kaoriya.net/) diff --git a/plugin/emmet.vim b/plugin/emmet.vim index dad03a8..1fcb7f3 100644 --- a/plugin/emmet.vim +++ b/plugin/emmet.vim @@ -23,6 +23,7 @@ " | " | " | +" | " | " | " | _