wst
wst

Reputation: 4338

How to make VSCode to replace the word when accepting autocomplete hint?

JetBrains IDE platform have very useful feature, which I am using a lot and I find it a performance booster. When I have a word in editor, and I want to change or update that word, I do the following.

By default VSCode supports only "ENTER" use case. Does it support "TAB" use case? If so, how to enable it?

Upvotes: 32

Views: 7022

Answers (2)

laszlo_kiss
laszlo_kiss

Reputation: 516

You can set this using the "editor.suggest.insertMode" setting. If you set this to "replace", it will behave as you want.

Upvotes: 40

wst
wst

Reputation: 4338

This feature is not yet implemented. A feature request has been opened on VSCode GitHub page[1]. At this moment there are no further details about when it could be implemented.

[1] https://github.com/Microsoft/vscode/issues/10266

Upvotes: 6

Related Questions