I'd like to run vimdiff on MacVim. Is there an easy way I'd be able to do it?
vimdiff and MacVim
16k Views Asked by Antonio At
4
There are 4 best solutions below
5

If you symlink gvimdiff to mvim then mvim will start with -d etc. Vim and Mvim both look at what executable name they've been started with to determine how they behave. That how gvim and vim can be both the same executable on linux and it's the same on OSX.
0

This worked for me on mac. I am using MacVim snapshot 72:
/Applications/MacVim.app/Contents/MacOS/Vim -d -g path_to_file1 path_to_file2
It works exactly like gvimdiff on windows.
Update: It even works with 3 files. This command will split the screen 3-ways and let you do a 3-way diff in macvim:
/Applications/MacVim.app/Contents/MacOS/Vim -d -g path_to_file1 path_to_file2 path_to_file3
If you have the
mvim
script installed (it is in the dmg, just put it somewhere in yourPATH
), you can just type in a shell:You can alias this to mvimdiff if you like.
In macvim, like in vim , you can also use:
The second option gives you a vertical diff, which is usually more readable