In various Jetbrains products with a vim extension, I can use shift+v
to select multiple lines, then comment or uncomment the selected lines with the Jetbrains command+/
command. With vscod(ium) + NeoVim, when I perform this same combo of shift+v
, then j
or k
until multiple lines are selected, then command+/
, it only comments/uncomments the current line of the cursor.
What is the best way to emulate the Jetbrains behavior in vscode (or vscodium)?
I work primarily in macOS.
I am aware of using ^
to go to the beginning of the current line, then control+v
combined with j
/k
, then shift+i
, etc, but this is far more commands and harder to perform than a simple multiline select and command+/
, esp. for uncommenting.