Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
154 views
in Technique[技术] by (71.8m points)

How to edit existing VS Code Snippets

Is there a way to remove or edit some of the default code snippets in Visual Studio CODE ?

For example when i type req+TAB i need require not requestAnimationFrame

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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:

  1. Go to File -> Preferences -> User Snippets and select JavaScript in order to edit snippets for that language
  2. Add this entry to the opened file javascript.json and save it

    "require": {
        "prefix": "req",
        "body": [
            "require"
        ],
        "description": "Add 'require'"
    }
    
  3. 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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...