-5

is there a feature in vim like in Visual Studio editor, called with

    Alt + Shift + Arrow keys combination,

to edit text?

  • Not sure this is what you are looking for, but did you look at [VsVim](http://visualstudiogallery.msdn.microsoft.com/59ca71b3-a4a3-46ca-8fe1-0e90e3f79329)? "It integrates the familier key binding experience of Vim directly into Visual Studio's editor." – Oded Apr 06 '13 at 18:09
  • 4
    By the way - it would be much clearer if you actually explained what the `Alt + Shift + Arrow keys combination` actually does. – Oded Apr 06 '13 at 18:11
  • @Бахрам Ходжаев See this [blog entry](http://blogs.msdn.com/b/zainnab/archive/2010/11/20/vim-emulation-vstipedit0080.aspx) – Dave Newman Apr 06 '13 at 18:12

2 Answers2

3

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

Community
  • 1
  • 1
dawud
  • 277
  • 1
  • 3
  • 20
1

See this stackoverflow question:

As @dawud sugggested it's making use of Ctrl + v + arrow keys to select the columns in visual mode.

Community
  • 1
  • 1
slm
  • 15,396
  • 12
  • 109
  • 124