Reputation: 4338
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.
getTimeInSeconds()
to getTimeInMinutes()
- I put cursor after getTimeIn
, get autocomplete, and press TAB. Nothing left to delete, everything is replaced.By default VSCode supports only "ENTER" use case. Does it support "TAB" use case? If so, how to enable it?
Upvotes: 32
Views: 7022
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
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