Merge pull request #452 from lpil/var-fun

Correct js vf ${1} snippet syntax error
This commit is contained in:
Holger Rapp 2014-09-18 16:33:48 +02:00
commit 3462a1c7b4

View File

@ -15,7 +15,7 @@ snippet f
} }
# Function assigned to variable # Function assigned to variable
snippet vf snippet vf
var ${1} = function ${1}(${2}) { var ${1:function_name} = function $1(${2}) {
${0} ${0}
}; };
# Immediate function # Immediate function