Say that I have this simple text in (g)Vim:
a b c
a b c
a b c
a b c
a b c
after changing to visual block selection mode how can I can select the whole 3rd column? Ctrl+V G selects whole text. I am looking for a keyboard shortcut for selecting a whole column selection, if any exist.
Thanks.
G goes to the last line, but moves the cursor to the first non-blank position if the
startoflineorcompatible(which enablesstartofline) options are set. If you want to keep the same column, setnosolbefore going into visual block mode, and then hit G.From the manual entry for
startofline: