How to paste text from Vim editor to browser?

I need to copy text from vim to web browser since I'm not able to use gedit as I'm opening an sql file. How do I get this done?


Either

  1. Select the text without pressing a shortcut key and middle-click in the browser window, or
  2. Select the text, press shift-ctrl-c and then use ctrl-v to paste, or
  3. I'm not entirely sure what vim has to do with sql files and what these sql files are (sqlite?), but maybe you have to use vim because the environment variable EDITOR is set to vim; maybe you could do whatever you do by setting

    export EDITOR=gedit
    

    before starting whatever program you start to edit the sql files.


Use "+y to yank the selected text to your Ctrl-V clipboard ("*y would be middle mouse button)

More on registers in Vim


  1. Select the text you want to copy using Visual Mode in Vim editor. v enters visual mode and selects the character at cursor location. Shift-v selects the entire line.

  2. In Vim, Copying is done using the y or "yanking". To copy selected text to system clipboard type "+y in Normal Mode. Now you can paste it anywhere else using Ctrl-v.

  3. To copy text from outside applications into Vim editor, first copy the text using the usual Ctrl-C command then go to Vim editor and type "+p in Normal Mode.

  4. I find the above commands very tedious to type every time I copy-paste from outside Vim, so I mapped the Ctrl-y to copy and the Ctrl-p to paste in Vim. Now I don't have to type "+y and "+p every time.

Add these to your .vimrc file:

nnoremap <C-y > "+y vnoremap <C-y> "+y nnoremap <C-p> "+p vnoremap <C-p> "+p

Edit: Before following the above steps,check vim --verison.Vim must have +xterm_clipboard feature installed for the above method to work. If not , then run sudo apt-get install vim-gtk to get the necessary packages.


you could simply use the mouse (right-click+copy) and (rightclick+Paste)