Update javascript.snippets : f should expand near words

If you write 

`http.get(f`

and hit tab, `f` won't be expanded to the function snippet.

This merge request fixes this, by specifying that it should be expanded near **w**ord boundaries.

>    w   Word boundary - With this option, the snippet is expanded if
>       the tab trigger start matches a word boundary and the tab trigger end
>       matches a word boundary. In other words the tab trigger must be
>       preceded and followed by non-word characters. Word characters are
>       defined by the 'iskeyword' setting. Use this option, for example, to
>       permit expansion where the tab trigger follows punctuation without
>       expanding suffixes of larger words.
This commit is contained in:
netei 2015-08-19 14:08:02 +02:00
parent 4ecee59742
commit 2a173a59f2

View File

@ -11,7 +11,7 @@ snippet fun
${0}
}
# Anonymous Function
snippet f
snippet f "" w
function(${1}) {
${0}
}