In VSCode, when I press the key combination ctrl+/
, VSCode will comment the selected lines, ensuring indentation is intact. So if a line of code starts at position 16, then the double slashes of comment (i.e., //
) will be at position 16, shifting the code to the right a little.
I would like to set it, so that when I press ctrl+/
, the comment double slashes //
will always start at position 0. Is this possible?
Thanks.