我想在Vim中每一行的末尾添加*。

我尝试了该代码,但没有成功

:%s/\n/*\n/g

当前回答

:%s/$/\*/g

应该工作,所以应该:%s/$/*/g。

其他回答

:%s/$/\*/g

应该工作,所以应该:%s/$/*/g。

甚至比:search命令还短:

:%norm A*

它的意思是:

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

...在每一行的开头加上*,

%s/^/*/g
%s/\s*$/\*/g

这将达到目的,并确保前面的空格被忽略。

如果你想在每一行的末尾添加Hello world:

:%s/$/HelloWorld/

如果你想这样做的具体行数说,从20到30使用:

:20,30s/$/HelloWorld/

如果你想在每一行的开头这样做,那么使用:

:20,30s/^/HelloWorld/