Ну вот:
:g/foo/t.|s//bar
Разбивая:
:g/foo/ " start a global command applied on all lines matching 'foo'
t. " duplicate the current line (the cursor is now on the new line)
| " chain a new command
s//bar " substitute the last searched element with 'bar'
Поскольку g
команда обновит шаблон поиска, вы можете пропустить шаблон для замены в команде замены. (ссылка:, :h :g
поиск search pattern
).
Старая версия:
:g/foo/norm! yyp:s/foo/bar^M
Разбивая:
:g start a global command
/foo/ apply only on lines having 'foo'
norm! execute a normal command
yyp duplicate the line
:s//bar replace foo with bar on the line (the duplicated one)
^M add enter to execute the substitution
Чтобы вставить ^M
пресс Ctrl+vи enter.
Примечание : я изначально придумал «более старую» версию, прежде чем я узнал о t
команде. Я оставлю это, но я не рекомендую использовать это. Первый чище, более простой.