Merge pull request #94 from sickill/js-improvements

There should be no space between the name of a function and the "("
This commit is contained in:
Honza Pokorny 2012-04-27 12:49:06 -07:00
commit 4076b4afdc

View File

@ -6,7 +6,7 @@ snippet proto
}; };
# Function # Function
snippet fun snippet fun
function ${1:function_name} (${2:argument}) { function ${1:function_name}(${2:argument}) {
${3:// body...} ${3:// body...}
} }
# Anonymous Function # Anonymous Function