1

我首先提到我已经阅读了一些关于此的建议,包括如何从系统的剪贴板制作 vim 粘贴(并复制到)?, https://superuser.com/questions/187537/copy-to-system-clipboard-instead-of-vim-buffer , https://askubuntu.com/questions/172265/how-to-use-a-common -clipboard-for-vim-and-unityhttp://vim.wikia.com/wiki/Accessing_the_system_clipboard,但我一直无法找到解决方案。

所以,我的问题是通过 X11 剪贴板复制到 gvim 工作,但无论如何我都无法从 gvim 复制工作。我已验证我的版本已编译 x11 剪贴板支持。目前我已将以下内容添加到 .vimrc:

set clipboard=unnamedplus,autoselect
set guioptions+=a
set paste
set go+=a

简单的拉动不起作用,“+y”或“*y”也不起作用。我已经用 xclip 验证剪贴板中没有任何内容。我也尝试了其他几个参数变化,包括

我正在使用 Ubuntu 12.04 和 gvim --version 说

$ VIM - Vi IMproved 7.3 (2010 Aug 15, compiled May  4 2012 04:22:36)
Included patches: 1-429
Modified by pkg-vim-maintainers@lists.alioth.debian.org
Compiled by buildd@
Huge version with GTK2-GNOME GUI.  Features included (+) or not (-):
+arabic +autocmd +balloon_eval +browse ++builtin_terms +byte_offset +cindent 
+clientserver +clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments 
+conceal +cryptv +cscope +cursorbind +cursorshape +dialog_con_gui +diff 
+digraphs +dnd -ebcdic +emacs_tags +eval +ex_extra +extra_search +farsi 
+file_in_path +find_in_path +float +folding -footer +fork() +gettext 
-hangul_input +iconv +insert_expand +jumplist +keymap +langmap +libcall 
+linebreak +lispindent +listcmds +localmap +lua +menu +mksession +modify_fname 
+mouse +mouseshape +mouse_dec +mouse_gpm -mouse_jsbterm +mouse_netterm 
-mouse_sysmouse +mouse_xterm +mouse_urxvt +multi_byte +multi_lang -mzscheme 
+netbeans_intg +path_extra +perl +persistent_undo +postscript +printer +profile
+python -python3 +quickfix +reltime +rightleft +ruby +scrollbind +signs 
+smartindent -sniff +startuptime +statusline -sun_workshop +syntax +tag_binary 
+tag_old_static -tag_any_white +tcl +terminfo +termresponse +textobjects +title
+toolbar +user_commands +vertsplit +virtualedit +visual +visualextra +viminfo 
+vreplace +wildignore +wildmenu +windows +writebackup +X11 -xfontset +xim 
+xsmp_interact +xterm_clipboard -xterm_save 

那么这可能是别的东西吗?有任何想法吗?这让我发疯,没关系让我感到愚蠢,因为如果我需要将某些内容复制到例如电子邮件中,我必须在 gedit 中打开文件。

4

1 回答 1

1

set guioptions+=a并且set go+=a是相同的:保留第一个并删除另一个。

set paste是一个可憎的东西,它与您的~/.vimrc. 阅读:help 'paste',删除该行并阅读:help 'pastetoggle'

"+y"*y最终出现在不同的剪贴板中。您使用什么命令进行拉取以及如何粘贴到其他程序中?Ctrl+v?中键?

于 2013-08-30T12:00:27.600 回答