Questions tagged «plugin-system»

Vim的插件系统。不适用于有关特定插件的问题(使用适当的plugin- *标签)或可能需要插件的问题。

2
安装2.7版时,Gundo插件需要python 2.4
我已经安装了Python 2.7.9。现在,我收到消息,Gundo插件需要2.4。有解决方法吗? 这是我的vimrc文件: set nocompatible " be iMproved, required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' Plugin 'tpope/vim-surround' Plugin …

3
在Vim插件中同时支持python和python3的优雅方式
我最近收到一个请求请求,以更改我的vim插件以使其支持python3。但是这些更改破坏了Mac上的vim插件,该插件似乎在听python。 python import sys 与 python3 import sys 是否有一种优雅的方法可以使插件中的脚本检测应使用的语句?就像是: if has('python') python import ... elseif if has('python3') python3 import ... else finish endif 谢谢。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.