From d89d02df63e4dc60ae45568249c5d2c225aed112 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Thu, 6 Dec 2012 16:07:28 -0800 Subject: [PATCH] fix fTAB javascript snippet adding a `;` is not useful at all 99.999999% of the time these are closures for iteration etc --- snippets/javascript.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/javascript.snippets b/snippets/javascript.snippets index f869e2f6..b2ffbdab 100644 --- a/snippets/javascript.snippets +++ b/snippets/javascript.snippets @@ -11,7 +11,7 @@ snippet fun } # Anonymous Function snippet f - function(${1}) {${2}}; + function(${1}){${2}} # if snippet if if (${1:true}) {${2}}