add word boundary flag to ultisnips/javascript fun snippet

This commit is contained in:
James Turley 2016-08-31 15:37:48 +01:00
parent 4c960ff846
commit 9ee26ce9e1

View File

@ -46,7 +46,7 @@ for (var ${2:i} = ${1:Things.length} - 1; $2 >= 0; $2--) {
}
endsnippet
snippet fun "function (fun)"
snippet fun "function (fun)" w
function ${1:function_name}(${2:argument}) {
${VISUAL}$0
}