From fc547c48a81a727c716e555614b403aad584983e Mon Sep 17 00:00:00 2001
From: ibrahim <74767039+proprytr@users.noreply.github.com>
Date: Tue, 2 Mar 2021 16:31:33 +0530
Subject: [PATCH 1/2] Added meta tag for responsiveness.
---
plugin/emmet.vim | 1 +
1 file changed, 1 insertion(+)
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 @@
" |
" |
" |
+" |
" |
" |
" | _
From 209220ee021db653907ef63599f924c4e73628f1 Mon Sep 17 00:00:00 2001
From: Ibrahim <74767039+proprytr@users.noreply.github.com>
Date: Wed, 3 Mar 2021 12:34:22 +0530
Subject: [PATCH 2/2] Updated README.mkd for responsiveness snippet
---
README.mkd | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/README.mkd b/README.mkd
index 1e97f68..e0bc179 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/)