0

I ran the following sequence of commands:

V10jc

but it seems like this doesn't copy the ten lines to my clipboard. So how can I do this?

NeoZoom.lua
  • 1,442
  • 14
  • 31

1 Answers1

4

Vim uses registers to store text. It may be helpful for you to read :h registers if you haven't already, as well as the user manual (this is covered in section 04.7)

Assuming you are using a version with the clipboard feature compiled in (which the default vim version on macOS as well as homebrew has), you can use the * register. So for your visual mode selection you would do:

V10j"*y

Note that this can also be achieved in normal mode without entering visual mode by doing "*y10j.

Andrew Ho-Lee
  • 1,210
  • 5
  • 11