vimでの削除 : Vim

Pocket

vimには削除の方法が色々ある。

テキストオブジェクトを使った削除

全てカーソルはpenのeにあるとする。

"this is a pen"  => di" => ""   # delete inner "
"this is a pen" => da" =>       # delete ambient "
<h1>this is a pen</h1> => dit => <h1></h1>   # delete inner tag
<h1>this is a pen</h1> => dat =>             # delete ambient tag
this is a pen => diw => this is a  # delete inner word
this is a pen => daw => this is a  # delete ambient word  diwとは削除後のカーソル位置がことなる。

cw

this is a pen => wwww cw => this is a  # change/clear word

コメント

No comments yet.

コメントの投稿

改行と段落タグは自動で挿入されます。
メールアドレスは表示されません。