Vim 便利なコマンド
空行の削除
:v/./d
指定したテキストだけ置換処理をする。
:s/\%V置換前/置換後/g
, を改行へ置換
:%s/,/\r/g
行No + G で行No へ飛ぶ
単語の上で * で単語検索が可能
検索文字を含む行抽出
:v/検索文字/d
検索文字を含む行削除
:g/検索文字/d
反転解除
:noh
改行を削除する。
:%s/\n//g
Go to list of users who liked
More than 3 years have passed since last update.
Vim 便利なコマンド
空行の削除
:v/./d
指定したテキストだけ置換処理をする。
:s/\%V置換前/置換後/g
, を改行へ置換
:%s/,/\r/g
行No + G で行No へ飛ぶ
単語の上で * で単語検索が可能
検索文字を含む行抽出
:v/検索文字/d
検索文字を含む行削除
:g/検索文字/d
反転解除
:noh
改行を削除する。
:%s/\n//g
Register as a new user and use Qiita more conveniently
Go to list of users who liked