Hadi bakalım:
:g/foo/t.|s//bar
Decomposing:
: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'
Çünkü g
komut arama deseni güncelleyecek, bu nedenle yedek komutu yerine deseni atlayabilirsiniz. (ref: :h :g
, aramak search pattern
).
Eski versiyon:
:g/foo/norm! yyp:s/foo/bar^M
Decomposing:
: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
Basın Ctrl+vve eklemek için enter.
Not : t
Komutu öğrenmeden önce "eski" versiyonu buldum . Onu bırakacağım ama kullanmanızı tavsiye etmem. Birincisi daha temiz.