Skip to content

Instantly share code, notes, and snippets.

@cj
Created July 29, 2012 19:15
Show Gist options
  • Save cj/3201253 to your computer and use it in GitHub Desktop.
Save cj/3201253 to your computer and use it in GitHub Desktop.
function! GetVisual()
let reg_save = getreg('"')
let regtype_save = getregtype('"')
let cb_save = &clipboard
set clipboard&
normal! ""gvy
let selection = getreg('"')
call setreg('"', reg_save, regtype_save)
let &clipboard = cb_save
return selection
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment