I'm looking for a solution about a "paste" problem on vi/vim .
How to join specific lines in a text file? I have a file like this:
15/10/2011 Revolution day
16/10/2011 About Rome
- differents newspapers
blogs an feeds
:) hp
17/10/2011 Yep, another day
and I want to paste everyline that does not start with a number. I've tried something like this... but does not work :-/
:[!^[0-9]]!paste -d ' ' -s
Can somebody help me?
thanks gb