问题标签 [vundle]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
vim - 尝试使用 Vundle,但 vundle#begin() 是一个未知函数。运行时路径正确
我正在尝试使用 Vundle 来管理 gVim 插件,但在我的 gvimrc 文件中启动 Vundle 时无法克服错误。“未知功能:vundle#begin()
”
这通常是一些运行时路径的问题,但我可以清楚地看到 Vundle.vim 的目录在我的运行时路径中。
我的 gvimrc 文件在C:\Users\Username
,我的 vim 安装在C:\Program Files (x86)\Vim
. 我的 Vundle 安装已安装,C:\Users\Username\.vim\bundle\Vundle.vim...
并且我的运行时路径变量清楚地包含此文件路径。
这是我的 gvimrc 的相关文本:
我可以成功运行 PluginInstall 并安装一些插件,但我无法让 vim 使用 Vundle。我还能做什么?
vim - 尝试设置 Vundle 时启动 Vim 时出现奇怪的消息
我正在尝试安装 Vundle,以便在 Vim 中拥有 Python 的 IDE。但是每次我启动 Vim 时它都会给我这样的信息:
我使用了Vundle 存储库中的代码。
关于如何阻止这种行为的任何想法?
vim - Vim——如何让 Vim 在 macOS 上支持隐藏?
我Yggdroot/indentLine
在 Vundle 中安装插件。并在正常模式下输入 :IndentLinesToggle ,但没有用。
然后我输入:version
, 并找到-conceal
,所以发生了这种情况。
Yggdroot/indentLine
插件必须+conceal
在 :中有用version
。
vim - 无法在树莓派中安装 vim 插件(vundle)
我正在尝试在 vim 中安装 python 插件,但我无法做到这一点。我从 Raspberry pi 中删除了 vi tiny 并安装了 vi 8.0 我按照该站点的说明进行操作
https://realpython.com/vim-and-python-a-match-made-in-heaven/
我从 /home/etc/vim/vimrc 文件夹中的 sudo 用户更新了我的 vimrc 文件
在 vimrc 文件中添加了这些行。
每当我尝试安装插件时,我都会收到错误 E942: Not an editor command: PluginInstall E942 error Image
当在 VIM 中输入 :Scriptname 时,它会显示这个
bash - Vim 插件仅在 :Plugin* 命令后显示
我已经安装了 Vundle 和一些插件。但是,插件仅在我运行:PluginInstall
或:PluginList
在 vim 中激活后才会激活。
$ vim
带我到一个
没有任何插件的普通 vim 。
一旦我运行,:PluginInstall
我就会看到这样的多窗格 vim:
multi pane vim with plugins
请注意,插件 LightLine 已安装。另请注意,一旦我切换到最右侧的窗格,就会出现两个 vim 状态栏:一个 LightLine 状态栏和普通的 --INSERT-- 状态栏。这让我觉得我在 vim 中以某种方式运行 vim ......
我的 .vimrc 供参考
我正在使用安装了 Vim 8.1 的自制软件,这是:set runtimepath
runtimepath=~/.vim,~/.vim/bundle/Vundle.vim,~/.vim/bundle/lightline.vim,~/.vim/bundle/auto-pairs,/usr/local/share/vim/vimfiles,/usr/local/share/vim/vim81,/usr/local/share/vim/vimfiles/after,~/.vim/after,~/.vim/bundle/Vundle.vim,~/.vim/bundle/Vundle.vim/after,~/.vim/bundle/lightline.vim/after,~/.vim/bundle/auto-pairs/after
知道为什么 vim 会这样吗?
vim - Syntastic for Vim on Cygwin, Unable to Set Shellslash
I'm using Vim on Cygwin and I've recently decided to attempt to install some plugins. I installed Vundle and managed to get the vim-airline plugin working, but for some reason I cannot get Syntastic to work.
My vimrc:
I believe syntastic downloaded properly as it updates when I run :PluginInstall
and :PluginUpdate
from within Vim.
When I open a .py file with the .vimrc above, I receive the following error:
From sniffing around I learned that from within Vim, the following can be helpful in diagnosing syntastic problems.
One of the portions of the :mes
returns
After a little more digging I found that my shellslash variable may not be set, which is causing Windows filepaths to be interpreted as UNIX filepaths (or vice versa). Other people found this portion of the :mes return helpful:
I added a line to my .vimrc, set shellslash
, yet after I saved it and reopened vim, nothing changed (I tried adding it in several different places, like before the set rtp, after syntastic plugin call, and at the very end). I got the same error, and when I ran through the prompts for :mes again, there was no shellslash variable listed. The output looked exactly like above. I also tried :set shellslash
from within Vim, and while no errors were thrown, the problem remained.
The last thing I could think of was that Vim was loading a different .vimrc file, so I ran :scriptnames but it returned in the top row the location of the .vimrc I've been editing.
So how do I set shellslash? I believe that might allow Syntastic to work properly in Vim on Cygwin.
vim - vim:从命令行执行 Vundle install
我正在使用 vim 和 vundle。设置我的 vim 环境的步骤之一是打开 vim,然后键入:BundleInstall
or :PluginInstall
。我正在尝试编写此设置的脚本。有没有一种方法可以在不以交互方式输入 vim 的情况下执行此操作?意思是,不打开vim?