Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to uninstall/remove plugin with pathogen for Vim

Tags:

vim

pathogen

How do I uninstall a plugin I installed with pathogen?

like image 975
teknix Avatar asked Dec 08 '12 17:12

teknix


People also ask

What is pathogen in Vim?

vim-pathogen is a runtimepath manager created by Tim Pope to make it easy to install plugins and runtime files in their own private directories.


1 Answers

Locate your bundle folder which should be in:

Linux/Mac: ~/.vim/bundle

Windows XP: C:\Documents and Settings\(UserName)\vimfiles\bundle

Windows7: C:\Users\(UserName)\vimfiles\bundle

Delete the folder of the plugin you want to delete.

Note: If you chose a different directory for pathogen to install your plugin then locate that folder and delete the plugin folder accordingly.

Restart Vim

Tip: In Vim type :echo $HOME to see your Vim home directory

like image 83
teknix Avatar answered Oct 05 '22 23:10

teknix