From def1f1aead101808dd4e566aa60d8568216d18e1 Mon Sep 17 00:00:00 2001 From: UncleBill Date: Fri, 29 Aug 2014 12:29:18 +0800 Subject: [PATCH] escape $ --- doc/emmet.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/emmet.txt b/doc/emmet.txt index d399796..cdec52d 100644 --- a/doc/emmet.txt +++ b/doc/emmet.txt @@ -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);", \ },