hinst
hinst

Reputation: 912

How to avoid ellipsis in VSCode autocompletion?

How to avoid ... from appearing in VSCode autocompletion? It shows the identifier name twice. Like in this case:

But I rather have it shown only once to make it easier for me to see it. I am not sure why the developers of VS Code decided to change it in such way. Earlier there was no ellipsis and the autocompletion identifier was shown only once.

enter image description here

Upvotes: 2

Views: 666

Answers (1)

brunouno
brunouno

Reputation: 595

You need to change the following setting as answered by @nick-daria in Disable Autocomplete on . (dot) in VSCode:

"editor.acceptSuggestionOnCommitCharacter": false,

Upvotes: 1

Related Questions