Aqui tienes:
:g/foo/t.|s//bar
Descomponiendo:
: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'
Debido a que el g
comando actualizará el patrón de búsqueda, puede omitir el patrón para reemplazarlo en el comando sustituto. (ref .: :h :g
buscar search pattern
).
Versión antigua:
:g/foo/norm! yyp:s/foo/bar^M
Descomponiendo:
: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 insertar la ^M
prensa Ctrl+vy enter.
Nota : Originalmente se me ocurrió la versión "anterior", antes de conocer el t
comando. Lo dejaré pero no recomendaré usarlo. El primero es más limpio y directo.