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:
parent
4ecee59742
commit
2a173a59f2
@ -11,7 +11,7 @@ snippet fun
|
|||||||
${0}
|
${0}
|
||||||
}
|
}
|
||||||
# Anonymous Function
|
# Anonymous Function
|
||||||
snippet f
|
snippet f "" w
|
||||||
function(${1}) {
|
function(${1}) {
|
||||||
${0}
|
${0}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user