tpope / vim-pathogen

pathogen.vim: manage your runtimepath

Home Page:http://www.vim.org/scripts/script.php?script_id=2332

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Does not work on windows and vim 7.4

zwhitchcox opened this issue · comments

Tried to use pathogen on windows...I'm using powershell with the command prompt...it doesn't give any error or anything, it just says "press a command to continue" when I open in it, and then it doesn't load the plugins.

vimrc:

  2 let vimDir = $HOME.'.vimfiles'
  3 let &runtimepath.=','.vimDir
  4 " Nerd Tree
  5 execute pathogen#infect($HOME.".vimfiles\\bundle")
  6

fixed it...problem with pathogen...had to change name of directory from .vim to .vimfiles and had to change the vim runtime directory like so:

let vimDir = $HOME.'\\.vimfiles'
let &runtimepath.=','.vimDir