码迷,mamicode.com
首页 > 系统相关 > 详细

vim调用系统剪切板复制粘贴

时间:2015-06-05 10:20:13      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:vim   剪切板   复制   粘贴   

文章参考:http://vim.wikia.com/wiki/In_line_copy_and_paste_to_system_clipboard。

将以下内容添加到~/下的.vimrc

" On OSX
vmap <C-c> y:call system("pbcopy", getreg("\""))<CR>
nmap <C-v> :call setreg("\"",system("pbpaste"))<CR>p

" On ubuntu (running Vim in gnome-terminal)
" The reason for the double-command on <C-c> is due to some weirdness with the X clipboard system.
vmap <C-c> y:call system("xclip -i -selection clipboard", getreg("\""))<CR>:call system("xclip -i", getreg("\""))<CR>
nmap <C-v> :call setreg("\"",system("xclip -o -selection clipboard"))<CR>p


vim调用系统剪切板复制粘贴

标签:vim   剪切板   复制   粘贴   

原文地址:http://blog.csdn.net/fnzsjt/article/details/46368733

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!