Using Visual Studio Code with a TypeScript application, is it possible to rename a variable/function without the affected files to be automatically open in the Editor area?
I'd like my refactorings to be automatically applied, the affected files immediately saved without being automatically open.
I know about the "files.autoSave" setting and, by using "afterDelay", I'm indeed able to refactore without the affected files to be automatically open. But I don't want to work with this setting on! Mostly because of linting, the auto saving of files is really annoying.
Any way to perform an immediate refactoring?
