My machine came with Vim 7.3 and I just installed MacVim 7.4, so now I'm juggling both and I'm not sure how to manage the two. I'm plagued by questions like:
- Should I remove the older version?
- Where should MacVim be located?
Currently MacVim.app is in /Applications
, and I see a couple executables at /Applications/MacVim.app/Contents/MacOS/MacVim
and /Applications/MacVim.app/Contents/MacOS/Vim
.
The pre-installed Vim 7.3 is sitting at /usr/bin/vim
.
I'd like to be able to use 7.4 both from the terminal and in MacVim. I haven't installed MacVim's "mvim" script and not sure I will.
What is the best way to set this up?
which vim
still shows the older versionuse/bin/vim
. Is that to do with the order of things in my$PATH
? Should I do anything about that? – ivan Sep 18 '13 at 01:07which
only looks at$PATH
and thinks liketype
look also at aliases. – Raphael Ahrens Sep 18 '13 at 04:58