4

I'm new to Vim and am looking for a way to check if pathogen is installed correctly. Some sort of editor or command line command that would let me know that vim has access to pathogen. Thanks!

Bren
  • 3,516
  • 11
  • 41
  • 73
  • 2
    Install pathogen [correctly](Install pathogen correctly and you won't need to wonder if it's installed correctly.) and you won't need to wonder if it's installed correctly. – romainl Jun 20 '14 at 06:55

1 Answers1

9

Type :scriptnames in vim.

Look for a line that says ~/.vim/autoload/pathogen.vim. If you see it pathogen is installed properly.


If you have any line in your vimrc that looks like

call pathogen#infect() 

And it doesn't error out when you load vim it is installed properly

FDinoff
  • 30,689
  • 5
  • 75
  • 96