Skip to content

Instantly share code, notes, and snippets.

@jbobbylopez
Created August 14, 2013 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbobbylopez/6227469 to your computer and use it in GitHub Desktop.
Save jbobbylopez/6227469 to your computer and use it in GitHub Desktop.
Using CTRL-c and CTRL-i to copy/paste text to and from the X11 clipboard from Vim
vmap <C-c> :<Esc>`>a<CR><Esc>mx`<i<CR><Esc>my'xk$v'y!xclip -selection clipboard<CR>u<CR>k^
map <C-i> :set paste<CR>i<CR><Esc>ko<Esc>:.!xclip -selection clipboard -o<CR>kJJ^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment