7

Is there a simple command that will move lines from one window to another. Currently I go to one window, yank the lines, and then paste in the other window.

I would like to know if I can do it without switching windows.

4
  • You should be more descriptive in your problem. Are you trying to find an easier to way to cut and paste? Mar 27, 2009 at 4:58
  • I am looking for something that doesn't require me to switch windows. Mar 27, 2009 at 5:00
  • If you don't switch windows, how would Vim know where you wanted to paste?
    – strager
    Mar 27, 2009 at 5:03
  • Using the buffer numbers: move lines 10,15 from buffer 1 to line 35 after buffer 5. Mar 27, 2009 at 5:05

4 Answers 4

8

I would do this sort of thing with a macro. So to record a macro for a, qa. Then yy to yank the line, :bnext to switch buffers, p to paste the line, then bnext again to switch back to the original buffer (on the line you started on). Then hit q to stop recording.

So to copy, switch windows, paste then switch back, you just need to use @a. Or map it to a function key (map @a).

N.B. Just noticed in the comments you had multiple buffers, so obviously you would need to record your macro accordingly.

3
  • I guess, thats what I might have to do. Use macros or write a script. Mar 27, 2009 at 5:17
  • I find it is pretty seamless doing it this way. Vim macros are your friend ;). Mar 27, 2009 at 5:19
  • It's so obvious, but for some odd reason, I'd never considered using macros which worked across different buffers until just now. Sep 22, 2018 at 14:04
2

You could try this mapping:

nmap <C-y> Y<C-w>wp<C-w>w
1
  • To yank, delete, switch window and then paste: nmap <C-y> Ydd<C-w>wp<C-w>w
    – jvd10
    Jul 19, 2019 at 13:41
1

using vimdiff you can use diffput or diffget to copy changes between buffers. From the manual:

There are two commands to copy text from one buffer to another.  The result is
that the buffers will be equal within the specified range.


                        *:diffg* *:diffget*
:[range]diffg[et] [bufspec]
    Modify the current buffer to undo difference with another
    buffer.  If [bufspec] is given, that buffer is used.
    Otherwise this only works if there is one other buffer in diff
    mode.
    See below for [range].


                        *:diffpu* *:diffput*
:[range]diffpu[t] [bufspec]
    Modify another buffer to undo difference with the current
    buffer.  Just like ":diffget" but the other buffer is modified
    instead of the current one.
    See below for [range].
1
  • I'm learning vimdiff (I've used Beyond Compare to merge in Windows) and vimdiff happens to be a great tool for merging. No programming, on the fly merging. I don't want to write a script for this sort of thing. Learning a few vi commands is not very painful.
    – user78706
    Jun 19, 2009 at 18:24
0

I doubt whether this is possible. But here is an interesting post about 100 Vim commands every programmer should know if you are interested.

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.