On Jan 12, 1:59 pm, r <[email protected]> wrote:
> I open a file with vim, then I want copy text to paste
> eg. in firefox,
> as I select text ( in command mode ) it does go in --VISUAL -- mode,

So far, so good.

> I press '+'

Try instead, press " (the literal double-quote character) and THEN
press + (the literal plus character). After this, press the 'y' key.

> and the cursor goes down one row, then I press 'y' and it come to
> command mode
> but it did not copied text to clipboard

This is because instead of "+y (select the '+' register and yank the
text) you executed +y (move the cursor down one row and yank the text
to Vim's "unnamed" register).

> infact pushing the central
> mouse wheel in firefox
> it paste nothing.
>

If you want to paste by middle-click (rather than CTRL-V) then you
will need to use * instead of + in the above commands. * is the
"selection register" whereas + is the "clipboard register". In
Windows, these are the same...I apologize for that misunderstanding.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to