How to disable [abc] suggestion on vs-code?

后端 未结 3 1203
孤独总比滥情好
孤独总比滥情好 2021-01-02 00:43

I want to disable the [abc] suggestion on the vs-code editor I tried some solution but it doesn\'t work. Help me to disable it.

相关标签:
3条回答
  • 2021-01-02 01:08

    oh yes I did it!

    "javascript.suggest.names": false
    
    0 讨论(0)
  • 2021-01-02 01:13

    For me what worked was:

    "editor.wordBasedSuggestions": false,
    
    0 讨论(0)
  • 2021-01-02 01:30

    After doing all the things suggested here, I still see abc suggestions for all the entries in my snippet file, not just the ones appropriate to the language I am using. I did manage to make that acceptable, by setting the value of Settings > Editor > SnippetSuggestions to top ( "editor.snippetSuggestions": "top"). Like that at least the proper snippets are on top, making it easier to ignore the rest.

    0 讨论(0)
提交回复
热议问题