Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个很长的清单,就像这样:
itemOne itemTwo ,itemThree itemFour itemFive ,itemSix ,itemSeven
以逗号开头的每一行都需要与上面的行合并,如下所示:
itemOne itemTwo,itemThree itemFour itemFive,itemSix,itemSeven
我怎样才能做到这一点?
一种有效的方法是使用以下:global命令:
:global
:g/^,/-j!
你可以这样做:
:%s/\n,/,/g
试试这个替换:
:%s#\n\ze,##
解释:
%s#
\n
\ze,
##