Reputation: 1102
When I type console.lo
in a .js
file in Visual Studio Code, I can hit Enter
, and autocomplete will change my line to console.log
. However, I would also like autocomplete to add parentheses. This question was already asked using the Go programming language. I tried adding js.useCodeSnippetsOnFunctionSuggest
as well as javascript.useCodeSnippetsOnFunctionSuggest
. Neither of these work. I also tried useCodeSnippetsOnMethodSuggest
as suggested here, but that didn't work either. What am I doing wrong?
Upvotes: 4
Views: 2108
Reputation: 1102
I fixed this by searching for "Complete Function Calls" in VS Code's settings, and checking JavaScript > Suggest: Complete Function Calls
. Thanks Mark for the suggestion.
Upvotes: 4