VIM: Not a team editor: MiniBufExplorer

I am using a pathogen and I copied the minibufexplorer plugin:

wget -O ~/.vim/bundle/minibufexpl.vim https://raw.github.com/fholgado/minibufexpl.vim/master/plugin/minibufexpl.vim 

In vim, when I try :MiniBufExplorer to get the error:

 E492: Not an editor command: MiniBufExplorer 

OS: CentOS
Vim 7.3

Did I miss something?

+4
source share
1 answer

The file should be placed in the .vim/bundle/plugin directory, and not directly under the bundle .

To fix this:

 mkdir -p ~/.vim/bundle/plugin mv ~/.vim/bundle/minibufexpl.vim ~/.vim/bundle/plugin 
+4
source

Source: https://habr.com/ru/post/1392210/


All Articles