The suggestion item requestAnimationFrame
is coming from the JavaScript language service. It's not coming from the snippets.
However, you can define your own snippets and tell Visual Studio Code to show the snippets first. How to do it:
- Go to
File -> Preferences -> User Snippets
and select JavaScript in order to edit snippets for that language
Add this entry to the opened file javascript.json
and save it
"require": {
"prefix": "req",
"body": [
"require"
],
"description": "Add 'require'"
}
Add the following line to your preferred settings.json
(user or workspace settings) and save it
"editor.snippetSuggestions": "top"
Now you get your self defined require
suggestion in first place as soon as you type req
in a .js
file.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…