When working with a TypeScript application in Visual Studio Code, is there a way to rename a variable or function without the affected files automatically opening in the Editor area?
I prefer my refactorings to be applied immediately and the affected files saved without opening automatically.
I am aware of the "files.autoSave
" setting and have used "afterDelay
" to refactor without files automatically opening. However, I do not want to use this setting due to issues with linting and the annoying behavior of files auto-saving.
Is there a way to perform an immediate refactoring without having files open automatically?