Merge pull request #230 from UncleBill/master

use two dollars to escape $
This commit is contained in:
mattn
2014-08-31 14:48:54 +09:00

View File

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