运行Vim插件(CoVim)时出现线程错误

运行Vim插件(CoVim)时出现线程错误,vim,vim-plugin,Vim,Vim Plugin,我正在尝试使用这个插件,它允许在ViM中进行协作编辑(比如谷歌文档)。但是,执行此操作时,我收到以下错误: [xcb] Unknown request in queue while dequeuing [xcb] Most likely this is a multi-threaded client and XInitThreads has not been called [xcb] Aborting, sorry about that. gvim: ../../src/xcb_io.c:179

我正在尝试使用这个插件,它允许在ViM中进行协作编辑(比如谷歌文档)。但是,执行此操作时,我收到以下错误:

[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
gvim: ../../src/xcb_io.c:179: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.
Vim: Caught deadly signal ABRT
Vim: Finished.

Successfully disconnected from document!
Exception RuntimeError: RuntimeError('cannot join current thread',) in <module 'threading' from '/usr/lib/python2.7/threading.pyc'> ignored
[xcb]退出队列时队列中存在未知请求
[xcb]这很可能是一个多线程客户端,并且没有调用xinithreads
[xcb]正在中止,很抱歉。
gvim:../../src/xcb_io.c:179:dequeue_pending_请求:断言`!xcb_xlib_未知_请求_in_deq'失败。
捕捉到致命信号ABRT
维姆:完成了。
已成功断开与文档的连接!
异常RuntimeError:忽略中的RuntimeError('无法加入当前线程',')
根据科维姆的文件:

“我收到一个错误,它提到了一个名为“threading.py”的Python文件。 您当前的Vim版本无法与CoVim一起使用。CoVim使用线程,修改Vim缓冲区并不完全是线程安全的。这在大多数版本中都不是问题,但有一些常见的版本会给您带来问题。最新的版本(在编写本文时)可以与CoVim一起使用。”


但是,据我所知,我使用的是最新版本的vim(我运行sudo apt get install vim,我使用的是vim 7.4)。此问题可能是什么?

更新(可能是手动更新)。
vim--version
的输出是什么?我认为我们达到了vim 7.4.898,您是否尝试过从头编译vim?我发现最近Linux发行版(CentOS和Ubuntu)上的Vim包在编译时没有使用“-enable pythoninterp=dynamic”开关(作为“/configure”的一部分)。