vim – Pathogen不加载插件

前端之家收集整理的这篇文章主要介绍了vim – Pathogen不加载插件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Pathogen不为我工作。我跟着亚当Lowe的提示here(和几个更多)没有任何成功…

我的vimrc:

filetype off
call pathogen#runtime_append_all_bundles()

filetype plugin indent on
set nocompatible
Syntax on
set tabstop=2
set smarttab
set shiftwidth=2
set autoindent
set expandtab
set number
colorscheme darkblue

.vim的内容 – ls .vim / *:

.vim/autoload:
pathogen.vim

.vim/bundle:
nerdcommenter/  vim-haml/   vim-surround/
vim-endwise/    vim-rails/  vim-vividchalk/

bundle中的所有插件都是通过将它们从GitHub克隆到bundle目录中来安装的。

我试过病原1.1和1.2,甚至最新从GitHub没有任何结果。 Vividchalk,Vim-rails和nerdcommenter不工作。我对其他插头有很少的经验,所以我不知道他们,但我想他们不工作也。

我使用ArchLinux,vim 7.2.385-1(不是最新的,因为最新的要求我安装ruby1.9,但它仍然是7.2)。它已通过pacman – ArchLinux软件包管理器安装。没有安装vim插件,除了使用病原体(我甚至重新安装vim包清洗/ usr / share / vim)。

我究竟做错了什么?

编辑:

> / etc / vimrc http://hpaste.org/fastcgi/hpaste.fcgi/view?id=29685#a29685
> /usr/share/vim/vimfiles/archlinux.vim
http://hpaste.org/fastcgi/hpaste.fcgi/view?id=29686#a29686

这似乎是由“系统”vimrc在设置文件类型设置病原体之前的一些分布导致的常见问题。因此,关闭并重新启动它会强制插件正确加载:
call pathogen#runtime_append_all_bundles()
 filetype off
 Syntax on
 filetype plugin indent on

更多信息here

原文链接:/bash/391483.html

猜你在找的Bash相关文章