I use VS Code, and I'm writing JavaScript.
I want to turn off auto-plete, when I'm writing a function. Intellisense suggests some candidates while I write a new function.
And, I finish writing function name and input '(' Key, Intellisense replaces my function name with the top of the list of candidates automatically. But I don't want to write new function. I don't want my code replaced when I push '(' Key. (Of course, I haven't push Enter or Tab key or other keys then.)
I have already tried turn off the suggestion.
”editor.quickSuggestions”: false
But this option doesn't suits for me. I use suggestions and auto-plete.
Please tell me what setting is suitable.
I use VS Code, and I'm writing JavaScript.
I want to turn off auto-plete, when I'm writing a function. Intellisense suggests some candidates while I write a new function.
And, I finish writing function name and input '(' Key, Intellisense replaces my function name with the top of the list of candidates automatically. But I don't want to write new function. I don't want my code replaced when I push '(' Key. (Of course, I haven't push Enter or Tab key or other keys then.)
I have already tried turn off the suggestion.
”editor.quickSuggestions”: false
But this option doesn't suits for me. I use suggestions and auto-plete.
Please tell me what setting is suitable.
Share Improve this question edited May 20, 2021 at 2:05 Bergi 667k161 gold badges1k silver badges1.5k bronze badges asked May 20, 2021 at 1:38 Vscode-settingVscode-setting 431 silver badge4 bronze badges1 Answer
Reset to default 6On Windows/Linux - Ctrl + Shift + P
On MacOS - Cmd + Shift + P
In the search box type settings.json
paste the following line there
"editor.acceptSuggestionOnCommitCharacter": false