News

New paper!

Tuesday, March 26, 2019

Vim: How to add string at the end of each line

To add a string (here symbol * as example) at the end of each line with Vim,
:%s/$/\*/g


source stack overflow