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?
You can set this using the "editor.suggest.insertMode"
setting. If you set this to "replace"
, it will behave as you want.