LoginSignup
10
8

More than 5 years have passed since last update.

Vim の置換で後方参照

Last updated at Posted at 2012-08-13

例として winston.info などを logger.info などに置換。

:%s/winston\.\(info\|warn\|error\)/logger.\1/g

Vim の 正規表現は ()\(\) としないといけないので、少し面倒ですね。

追記

コメント欄の t_uda さんのご指摘のように \v を使えばもっと自然に書けるようです。

:%s/\vwinston\.(info|warn|error)/logger.\1/g
10
8
2

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
10
8