Which is the shortest way to select an entire line without the new line character in VIM?
I know that SHIFT + v selects the entire line, but with new line character.
To do this I go to the line and I press:
- ^ (puts the cursor at the start of the line)
- v (starts the visual select)
- $ (selects the entire line including new line character)
- Left (unselects the new line character)
I also know that I can create a recording that does such a thing. But I am asking if is there any built-in shortcuts...