Published on

Neovim add a string to the end of each line

:%norm A*

Explanation

 %       = for every line
 norm    = type the following commands
 A*      = append '*' to the end of current line

Reference