$one = 'one'
$two = 'two'
$three = 'three'
我們發現上面這段 code 的行尾都忘加 ;
來吧
$ 移到行尾
<C-v>jj 選取範圍
A;<Esc> 補上 ;
$one = 'one';
$two = 'two';
$three = 'three';
如果想要將下面兩行註解的話
0 移到行頭
j<C-v>j 選取範圍
I// <Esc> 補上 //
$one = 'one';
// $two = 'two';
// $three = 'three';
拿掉的話,一樣的做法
0 移到行頭
j<C-v>t$j 選取範圍
d 刪除
$one = 'one';
$two = 'two';
$three = 'three';
收功
visaul 模式是一個可以靈活運用的方式,拿取要操作的範圍