问题标签 [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 安装插件时无法在本地搜索插件但在网络上搜索插件(配置 Vim)
我已经成功安装了 Vundle for vim
通过帮助文档,我知道使用命令“PluginInstall **”可以安装此插件
我已经下载了一些插件,但是当我输入 :PluginInstall ** 来安装 ** 时,它不是从本地安装 ** 而是再次在网上搜索。
那么,如果这个命令“:PluginInstall”从我想要的位置安装插件,我该如何指定路径。
=======================例如::PluginSearch taglist
表明
插件 'taglist-plus' 插件 'taglist.vim'
我的本地文件是从 www.vim.org/script.php?script_id=273 下载的 taglist_46</p>
但它没有出现在结果中
git - Vim Bundle vundle 无法安装
平台 - Mac OS- 10.8.5
这是我的 .vimrc 文件,后面是我得到的错误。*我的 git 存储库设置正确 ----- * git config --global core.editor "vim" (这是在我的 .bashrc 中设置) ** set -o vi (在我的 .bashrc 中设置)
.vimrc 文件
我得到的错误:
vim - how to config multiple vundle directories
I'm new to vundle and I'm using exvim (exvim is a set of plugins and settings)
I have my own plugins to load and I want to put exvim and my own files separately, not modifying any setting of exvim's.
I create a .vimrc file to load exivm's vimrc and then my own vimrc
exvim_vimrc calls vundle first to load its plugins:
Let's say my plugins are in d:/my_plugin, how can I load them?
I tried add script below in my vimrc, but seems conflicting with exvim's plugin loading
Thanks.
vim - vimrc 在 vundle BundleInstall 期间测试 if_lua
我在许多系统上使用相同的 .vimrc 文件。我想绕过 vundle 安装一些我知道如果 'if_lua' 不存在将无法工作的模块。
是否有有条件地做的vim脚本方式
仅当 vim 使用 lua 编译以避免启动错误时:
谢谢
ubuntu - Vundle - E492:不是编辑器命令:PluginInstall
我无法让 Vundle for Vim 工作(我在 Ubuntu 14.04 上)。这是我的 .vimrc 中的相关部分
为什么会抛出错误E492: Not an editor command: PluginInstall
?
vim - 无法将 NERDCommenter 与 vundle 一起使用
我正在使用 vimThe-NERD-Commenter
插件以及vundle
. 但我无法让插件工作。
我将我的领导者 ley 映射到,
. 当我运行:scriptnames
命令时,我看到~\vimfiles\bundle\The-NERD-Commenter\plugin\NERD_commenter.vim
输出中列出了该命令。我还可以提供有关NERDCommenter
使用:help NERDCommenter
命令的帮助,该命令告诉我插件已正确安装。但是,当我尝试使用<leader>c<space>
在我的情况下转换为,c
它的注释切换时,它会调用更改命令。
我的.vimrc
文件在这里https://gist.github.com/bAmrish/be1aac3aeb087925a3e5
更新:
看起来如果我从.vimrc
文件中删除领导键映射,那么插件就会开始使用默认的领导键\
。
请让我知道我做错了什么。
谢谢, 阿姆里什
linux - 未知函数:vundle#begin
我安装了旧的 vundle。我没有使用更新 vundle,而是从 vundle 的Github 页面中的git pull
Quick Start 部分中删除~/.vim
并安装了旧 vundle 。
也许我在安装新的 vundle 时弄坏了一些东西。我明白了:
我完全按照 Github 页面上的说明进行操作。
vim - 模块化 vimrc:如何从不同文件中获取 vundle 插件
我想在不同的组件中分解我的 vimrc。我用 Vundle 管理我的 vim 插件,我希望每个插件都有一个文件,告诉 vundle 管理它并设置如下配置:
vundle.vim:
和 syntastic.vim:
等等。
如果我现在调用这个 vimrc:
只有最后一个插件显示在 vundles 插件列表中,但会读取其他配置。我猜,vundle 仅在调用 (:PluginXXX) 时调用 'vundle#begin()'/'vundle#end()' 部分,因此仅返回最后获取的文件的内容。我怎么解决这个问题?我可以使用类似的东西吗
并打电话
在我的 vimrc 中?如果是这样,vim 变量的语法是什么?
authentication - Vundle 未对 github 进行身份验证
我有这个在我的~/.vimrc
。
漂亮,真的是直截了当。我有几个想要使用 Vundle 安装的插件,但每当我这样做时:PluginInstall
,它都会提示我输入 github 用户名和密码。我知道我的用户名和密码是正确的,但它一直无法通过身份验证。顺便说一句,我在 github 上有两种方式的身份验证。我不认为这很重要。但是,我收到以下错误。
我什至尝试通过这样做ssh -T git@github.com
来
连接到 githubHi shriek! You've successfully authenticated, but GitHub does not provide shell access.
所以,我对发生的事情有点迷茫。帮助?
git - Install Vundle plugin without Git Clone command
I am at my company's network and it isn't possible for me to run commands such as wget
or git
on my console. I need to install Vundle plugin for Vim editor. All the installation I found says i need to do this
As this is not possible for me. I tried to download the .zip
and copy it to .vim/bundle/
directly but this does not seem to work.
Are they any alternatives to install the plugin ?