I'd like to run vimdiff on MacVim. Is there an easy way I'd be able to do it?
|
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. |
|||||||||||||
|
If you have the mvim -d file1 file2 You can alias this to mvimdiff if you like.
In macvim, like in vim , you can also use: :e file1 :diffsplit file2 or :vert diffsplit file2 The second option gives you a vertical diff, which is usually more readable |
|||||||||
|
|
Ok. I have kindof answered my own comment: To diff two open buffers in vim, open them vertically, and select the first and type This works for more than two buffers too =) |
|||
|
|
