Aqui está:
:g/foo/t.|s//bar
Decomposição:
: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'
Como o g
comando atualizará o padrão de pesquisa, você poderá omitir o padrão para substituir no comando substitute. (ref:, :h :g
procure search pattern
).
Versão antiga:
:g/foo/norm! yyp:s/foo/bar^M
Decomposição:
: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
Para inserir a ^M
imprensa Ctrl+ve enter.
Nota : Originalmente, eu vim com a versão "mais antiga" antes de aprender sobre o t
comando. Vou deixar, mas não vou recomendar o uso. O primeiro é mais limpo e direto.