-3

So I have a text say

Hello I am going to be late tonight.
Do not go outside.

And I would like to select:

Hello I 
Do not 

Is this possible?

Chiba
  • 91
  • 4

2 Answers2

1

The below links explain exactly what you are looking for.

In notepad++,

use Alt + Mouse and drag or

Alt + Shift + Arrow keys

for selecting column wise and editing.

Column Mode Editing

In vim use ctrl-v for selecting column wise.

text selection

You can also refer to this question on SO.

Community
  • 1
  • 1
Sagar Jain
  • 7,475
  • 12
  • 47
  • 83
0

Using Vim, you can do column-wise selection with Ctrl-v

Ry-
  • 218,210
  • 55
  • 464
  • 476
Kevin Seifert
  • 3,494
  • 1
  • 18
  • 14
  • Thank you my friend. Do you know what to do if I am using any other editor? Can I find some documentation on the website of the editor? – Chiba Jul 15 '14 at 21:48
  • Yes, and it will completely depend on the editor. Not all editors will allow you to do this. – Kevin Seifert Jul 17 '14 at 04:38