Reputation: 859
I want to disable word based suggestion, it's annoying and useless in my opinion. For example Brackets will offer suggestion for variables, methods and language and will not pollute the suggestion list with all similar words written in file.
I just want code suggestion. I tried "editor.wordBasedSuggestions": false
, but no luck. How to change that ? Thanks.
Example:
Upvotes: 9
Views: 7638
Reputation: 13673
In UI it's:
Edit -> Perferences -> Settings -> Text Editor -> Suggestions -> Javascript > Suggest: Names
Upvotes: 2
Reputation: 683
// Controls if suggestions should be accepted 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions.
"editor.acceptSuggestionOnEnter": "off"
from here
Upvotes: 4
Reputation: 11
You can use this one as I had problems with javascript function snippet not being on top
"editor.suggest.filteredTypes": {
"keyword": false
},
Upvotes: 1