is there a feature in vim like in Visual Studio editor, called with
Alt + Shift + Arrow keys combination,
to edit text?
is there a feature in vim like in Visual Studio editor, called with
Alt + Shift + Arrow keys combination,
to edit text?
Looks like you need blockwise Visual mode
Activate it pressing CONTROL-v
while in command mode, then use movement keys (h,j,k,l) to select a block. This is the most basic visual block mode interactive selection method.
Check the help on this topic from within vim using :help visual-block
More advanced selection methods can be used. An example is described in this Vimcast
See this stackoverflow question:
As @dawud sugggested it's making use of Ctrl + v + arrow keys to select the columns in visual mode.