Can vi/vim do paste -d ' ' other then :r !paste -d ' '?
What is the native vi/vim command called, if any?
|
Let us consider a somewhat different but closely related problem: appending a range of lines to the lines in another one immediately preceding it. After solving it, we will return to the original problem statement and show how it can be reduced to the suggested one. Without restricting the generality, we assume that the first block of lines (the one to append the second one to) starts on the first line of the buffer, and that the cursor is located on the last line of that first block. In this case, the lines can be joined using the following short and efficient Ex command,
This The construction of these commands takes advantage of two implicit facts.
First, before the command specified in a If it is needed to put a separator in between joined lines, one can add
a substitution command inserting it before
There is an option of default Vim sentence separation behavior that is used
when the
For details about that space-separation behavior, see The technique is easily applicable to the problem in question, since the initial situation could be narrowed down to the one we have considered above. In order to do that, go to the buffer containing the lines to append and copy them,
Then switch to the target buffer, containing the text to append to, and paste the copied lines below the current contents of the buffer,
The last command combines two actions:
Upon that, one of the
|
||||
cat. Either it's broken on my computer or I don't understand how it works. Do you want to join all the lines with aspaceas separator? If so:<range>s/\n/does just that. – romainl Mar 11 '12 at 21:04