In Visual Studio Code, when pressing the Delete button at the end of a current line:
[]<- a currsor is here
)
, a text on a next line obviously jumps to the current line and it becomes something like this:
[] )
So we have a bunch of spaces in the joined text (between square brackets and paranthesis in the example above), so we have to delete them manually.
In the "big" Visual Studio (maybe because of ReSharper) all those spaces get deleted automatically and immediately, with a single Delete stroke, we have what we wanted to do:
[])
How can we remove those spaces with Visual Studio Code automatically? Is there a setting for this?