4

For example, there are some text like this:

001 aaaaa
002 bbbbbbbb
003 ccc

I want to select

aaaaa
bbbbbbbb
ccc

and yank it. What should I do?

4

2 回答 2

8

以下序列应该可以解决问题

ggw<C-v>G$

在哪里

gg    -- Goes to top of file
w     -- skips one word
<C-v> -- starts visual block select
G     -- selects until end of file
$     -- selects to end of each line
于 2012-10-25T05:19:57.193 回答
2

Visual Modev提示切换到Vim

把它cursor放在columnselect

用于ctrl+v选择要复制的块

然后将单独选择该列并单独复制所需的文本并可以拉出它:)

请参考这里的链接

于 2012-10-25T05:23:45.013 回答