How to stop copying space on an empty line in Visual Studio code?

In the visual studio code, if you press ctrl + c on an empty line without highlighting anything, it copies the empty line.

I thought it was possible to disable this, but could not find it.

+5
source share
1 answer

You must do this by setting the editor.emptySelectionClipboard option to false .

+6
source

Source: https://habr.com/ru/post/1265007/


All Articles