How to add text at the end of each line in Vim?

por | 2 marzo, 2016

*-*-*-*-*-*-*_*-*-*-*-*-*-*_*-*-*-*-*-*-*_
Final de Línea agregar texto

Buscar y Reemplazar $

:%s/$/,/

:%s/$/,/

: - enter command mode
% - for every line
s - substitute
/$ - the end of the line
/,/ - change it to a comma

*-*-*-*-*-*-*-*-*-*-*-*-*
PRINCIPIO DE LÍNEA AGREGAR TEXTO

:%s/^/foo: /

:%s/$/,/

: - enter command mode
% - for every line
s - substitute
/^ - the beggining of the line
/texto/ - change it