Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Vim で置き換える必要がある 1 行のコードがあります。簡単にするために、1行のコードを置き換える必要がありますerrors += 1;。errors++;
errors += 1;
errors++;
私がするとき、私は:%s/errors += 1;/errors++;/a得るE488:Trailing Characters。
:%s/errors += 1;/errors++;/a
E488:Trailing Characters
誰もこれを行う方法を知っていますか?
/a最後にフラグとして持っています:a代替フラグではありません。これがなけれaばうまくいくはずです。
/a
a
c各置換を手動で確認する場合に使用します。
c
g行のすべてのオカレンスを置換する場合に使用します。
g