VS code autocompletion base for a word in a file

I'm just starting out with VS Code, and I'm really happy with it for now!

I come from Notepad ++, and I did not find any IDE at the same β€œlevel” of this for the things I do. Still! I really like what VS Code does and how all modern integrated technologies help me.

But I miss one thing that a nuclear power plant does, it’s an autocomplete word base in a file. Can I do the same in VS Code?

Thanks.

+7
visual-studio-code intellisense javascript-intellisense
source share
3 answers

Add this to your settings.json and restart vs code:

// Controls how JavaScript IntelliSense works. // Always include all words from the current document. "javascript.suggest.alwaysAllWords": true, // Complete functions with their parameter signature. "javascript.suggest.useCodeSnippetsOnMethodSuggest": true 
0
source share
 "editor.quickSuggestions": { "other": true, "comments": true, "strings": true }, 
+5
source share

To auto-complete the brackets, use this setting:

 // Complete functions with their parameter signature. "javascript.suggest.completeFunctionCalls": true 
0
source share

All Articles