16
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

複数ファイル操作

Last updated at Posted at 2013-05-01

ソースコードとかで関数名やdefineなどを変更した際に全置換する方法です。
最近知りました。vim使っている人でも知らない人が多いみたいなので、メモ書きと紹介です。下記のようにします。※argsに引数を渡さずに使うと現在設定されている引数のリストが表示されます。

複数ファイルを一気に操作

:args *.c
:argdo %s/hoge/fuga/g | update

今開いているバッファすべてにコマンドを適用する

:bufdo %s/hoge/fuga/g | update

vimでリファクタとかするときには結構使えるテクニックですね。

16
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?