I have MacVim installed and I am trying to set it up as the editor for Git (version control), but I can't run 'mvim' from the command line as it isn't recognised. How do I setup mvim so I can run it from Terminal?
|
There should be a script named mvim in the root of the .bz2 file. Copy this somewhere into your $PATH ( /usr/local/bin would be good ) and you should be sorted. |
|||||||||||||||||||
|
|
I don't think I'd to add anything to the path, did
should then open macvim in the terminal, you can also go ahead and alias that
|
|||||||||||
|
|
In addition, if you want to use MacVim (or GVim) as |
||||
|
|
|
If you go the brew route, the best way to install would be:
That will provide mvim, vim, vi, view, etc. in /usr/local/bin (all symlinked to the copy in the Cellar). This also removes the need to create any aliases and also changes your vim, vim, etc. to all use the same Vim distribution as your MacVim. |
|||||||||||||||
|
|
Here's what I did: After building Macvim I copied mvim to one of my $PATH destinations (In this case I chose /usr/local/bin)
Then when you invoke mvim it is now recognised but there is an annoying thing. It opens the visual MacVim window, not the one in terminal. To do that, you have to invoke
To make sure every time you call mvim you don't have to remember to add the '-v' you can create an alias: alias mvim='mvim -v' However, this alias will only persist for this session of the Terminal. To have this alias executed every time you open a Terminal window, you have to include it in your .profile The .profile should be in your home directory. If it's not, create it.
include the alias command in there and save it. That's it. |
|||
|
|
I'd seriously recommend installing MacVim via MacPorts ( When installed, MacPorts automatically updates your profile to include /opt/local/bin in your path, and so when mvim is installed as /opt/local/bin/mvim during the install of MacVim you'll find it ready to use straight away. When you install the MacVim port the MacVim.app bundle is installed in /Applications/MacPorts for you too. A good thing about going the MacPorts route is that you'll also be able to install git too ( |
|||||||||||||
|
|
I'm adding Bard Park's comment here for that was the real answer for me:
|
||||
|
|
vimfrom the command-line. – pavium Jan 13 '10 at 11:17echo $PATH") and add the folder to the MacVim executable to it if it's not there already (use "export PATH=$PATH:path/to/folder"). Mind the$signs, they are important! – laura Jan 13 '10 at 11:18