The Computer Oracle

Uninstalling Vim compiled from source

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Sunrise at the Stream

--

Chapters
00:00 Uninstalling Vim Compiled From Source
00:21 Accepted Answer Score 19
00:40 Answer 2 Score 2
00:49 Thank you

--

Full question
https://superuser.com/questions/623040/u...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#vim

#avk47



ACCEPTED ANSWER

Score 19


To uninstall vim, you can just download again the sources and run in the source directory :

make VIMRUNTIMEDIR=/usr/share/vim/vim73
sudo make uninstall

replacing /usr/share/vim/vim73 by the one you used for installation.




ANSWER 2

Score 2


You have to run make distclean before make VIMRUNTIMEDIR=...

cd ~/tmp
hub clone vim/vim
cd vim
make distclean <---
make VIMRUNTIMEDIR=/usr/local/share/vim/vim80
sudo make uninstall