Merge branch 'master' of github.com:mattn/emmet-vim

This commit is contained in:
mattn
2014-09-02 18:35:06 +09:00

View File

@@ -420,8 +420,8 @@ CUSTOMIZE *emmet-customize*
\ },
\ 'javascript' : {
\ 'snippets' : {
\ 'jq' : "$(function() {\n\t${cursor}${child}\n});",
\ 'jq:each' : "$.each(arr, function(index, item)\n\t${child}\n});",
\ 'jq' : "\\$(function() {\n\t${cursor}${child}\n});",
\ 'jq:each' : "\\$.each(arr, function(index, item)\n\t${child}\n});",
\ 'fn' : "(function() {\n\t${cursor}\n})();",
\ 'tm' : "setTimeout(function() {\n\t${cursor}\n}, 100);",
\ },