This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vim with all enhancements | |
source $VIMRUNTIME/vimrc_example.vim | |
" Use the internal diff if available. | |
" Otherwise use the special 'diffexpr' for Windows. | |
if &diffopt !~# 'internal' | |
set diffexpr=MyDiff() | |
endif | |
function MyDiff() | |
let opt = '-a --binary ' |