pathogen

Vim: “E185: Cannot find color scheme solarized”

笑着哭i 提交于 2019-12-23 07:40:10
问题 Setting up a new machine and trying to get Solarized running in Vim. Getting the following error when I run vim: E185: Cannot find color scheme solarized Tried to follow Pathogen install instructions from the Solarized README on the official repo. Checked this similar question & answer, which solved the problem by actually having the proper files in the directory, but as you can see below, my directory is indeed full of goodies (I just cloned it). Details iTerm2 .vimrc is loading, and other

After much reading, I still can't get Pathogen to load a plugin under Windows

五迷三道 提交于 2019-12-20 05:13:31
问题 For gVim 7.3.46 on Windows 7 64-bit fully updated (I run gVim 7.3.46 because it adds a reliable instance of "Edit with Vim" to the Windows context menu.) Despite having read an abundance of articles (many of them which repeat the others) I can't get Pathogen to load a vim plugin that already works fine if I don't use Pathogen. The problem seems to be the location of Pathogen's "bundle" folder as follows: · IF I place the mru.vim (Most Recently Used Files) plugin in "D:\Program Files (x86)\Vim

After much reading, I still can't get Pathogen to load a plugin under Windows

六眼飞鱼酱① 提交于 2019-12-20 05:13:19
问题 For gVim 7.3.46 on Windows 7 64-bit fully updated (I run gVim 7.3.46 because it adds a reliable instance of "Edit with Vim" to the Windows context menu.) Despite having read an abundance of articles (many of them which repeat the others) I can't get Pathogen to load a vim plugin that already works fine if I don't use Pathogen. The problem seems to be the location of Pathogen's "bundle" folder as follows: · IF I place the mru.vim (Most Recently Used Files) plugin in "D:\Program Files (x86)\Vim

Vim: Pathogen not loading

巧了我就是萌 提交于 2019-12-19 16:34:18
问题 I've recently moved to a new MacBook, taking my vim dot files with me. Whilst Pathogen works fine on my old MacBook, it's not loading at all on my new one. I've now reinstalled Pathogen from scratch and it's not working with the most basic setup either. I've tried both iTerm and Terminal.app in case it was the newer version of iTerm I'm running that was the issue. .vimrc .vim Any ideas? :) 回答1: OK, this is a bit embarrassing :$ As it turns out mMontu gave me the prod in the right direction by

Vim: Can't get pathogen to load bundles

让人想犯罪 __ 提交于 2019-12-14 03:48:05
问题 I've read five other questions about this on Stackoverflow, and github and so on, but have not been able to solve this problem, and am totally lost at this point. I'm on Ubuntu 11.10 with Vim 7.3. Here's my .vimrc set nocp call pathogen#infect() syntax on filetype plugin indent on call pathogen#infect() colorscheme xoria256 set rnu set expandtab set tabstop=2 set shiftwidth=2 set cindent set virtualedit=all pathogen.vim is in ~/.vim/autoload and I've got vim-jade and vim-surround in ~/.vim

Pathogen ignoring ftplugin scripts

扶醉桌前 提交于 2019-12-11 01:14:46
问题 I'm trying to use Pathogen to manage Vim plugins. I had a couple of scripts I made in .vim/ftplugins . I installed Pathogen but now none of the scripts in ftplugins runs. I tried adding a directory inside .vim/bundle with the scripts but it didn't work (it was .vim/bundle/local/ftplugin/python.vim ) Any idea how can I make Pathogen load the scripts in ftplugin directory? First lines of my .vimrc: set nocompatible syntax on filetype plugin indent on "execute pathogen#infect() Only works with

SnipMate with Pathogen

十年热恋 提交于 2019-12-07 02:36:15
问题 I've just installed pathogen on my ~/.vim and add the new command to run the bundles :call pathogen#infect() I've already add to my ~/.vim/bundle folder vim-surround and NERDtree and everything works great. Nevertheless, when I tried to add garbas SnipMate it didn't work. Could someone help with this issue? Thanks 回答1: I installed snimpmate following this guide with no problem at all John Andersons vim guide $ mkdir ~/.vim/ $ mkdir ~/.vim/{autoload,bundle} $ cd ~/.vim/ $ git init git