├── .gitignore ├── EnhancedDiff.vmb ├── Makefile ├── README.md ├── autoload └── EnhancedDiff.vim ├── default_diff.png ├── diff_ignore.png ├── doc └── EnhancedDiff.txt ├── histogram_diff.png ├── plugin └── EnhancedDiff.vim └── test ├── 1 ├── diff.txt ├── file1 ├── file2 └── normal_diff.ok ├── 2 ├── diff.txt ├── file1 ├── file2 └── normal_diff.ok ├── 3 ├── diff.txt ├── file1 ├── file2 └── normal_diff.ok ├── 4 ├── diff.txt ├── file1 ├── file2 └── normal_diff.ok ├── 5 ├── description.txt ├── diff.txt ├── file1 ├── file2 ├── normal_diff.ok └── vimrc ├── 6 ├── description.txt ├── diff.txt ├── file1 ├── file2 ├── normal_diff.ok └── vimrc ├── README.md └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/.gitignore -------------------------------------------------------------------------------- /EnhancedDiff.vmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/EnhancedDiff.vmb -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/README.md -------------------------------------------------------------------------------- /autoload/EnhancedDiff.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/autoload/EnhancedDiff.vim -------------------------------------------------------------------------------- /default_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/default_diff.png -------------------------------------------------------------------------------- /diff_ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/diff_ignore.png -------------------------------------------------------------------------------- /doc/EnhancedDiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/doc/EnhancedDiff.txt -------------------------------------------------------------------------------- /histogram_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/histogram_diff.png -------------------------------------------------------------------------------- /plugin/EnhancedDiff.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/plugin/EnhancedDiff.vim -------------------------------------------------------------------------------- /test/1/diff.txt: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /test/1/file1: -------------------------------------------------------------------------------- 1 | line1 2 | -------------------------------------------------------------------------------- /test/1/file2: -------------------------------------------------------------------------------- 1 | line2 2 | -------------------------------------------------------------------------------- /test/1/normal_diff.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/1/normal_diff.ok -------------------------------------------------------------------------------- /test/2/diff.txt: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /test/2/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/2/file1 -------------------------------------------------------------------------------- /test/2/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/2/file2 -------------------------------------------------------------------------------- /test/2/normal_diff.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/2/normal_diff.ok -------------------------------------------------------------------------------- /test/3/diff.txt: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /test/3/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/3/file1 -------------------------------------------------------------------------------- /test/3/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/3/file2 -------------------------------------------------------------------------------- /test/3/normal_diff.ok: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/4/diff.txt: -------------------------------------------------------------------------------- 1 | patience 2 | -------------------------------------------------------------------------------- /test/4/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/4/file1 -------------------------------------------------------------------------------- /test/4/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/4/file2 -------------------------------------------------------------------------------- /test/4/normal_diff.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/4/normal_diff.ok -------------------------------------------------------------------------------- /test/5/description.txt: -------------------------------------------------------------------------------- 1 | ignorepat 2 | -------------------------------------------------------------------------------- /test/5/diff.txt: -------------------------------------------------------------------------------- 1 | patience 2 | -------------------------------------------------------------------------------- /test/5/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/5/file1 -------------------------------------------------------------------------------- /test/5/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/5/file2 -------------------------------------------------------------------------------- /test/5/normal_diff.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/5/normal_diff.ok -------------------------------------------------------------------------------- /test/5/vimrc: -------------------------------------------------------------------------------- 1 | :EnhancedDiffIgnorePat ^.*\%<11c 2 | -------------------------------------------------------------------------------- /test/6/description.txt: -------------------------------------------------------------------------------- 1 | no ignorepat 2 | -------------------------------------------------------------------------------- /test/6/diff.txt: -------------------------------------------------------------------------------- 1 | patience 2 | -------------------------------------------------------------------------------- /test/6/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/6/file1 -------------------------------------------------------------------------------- /test/6/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/6/file2 -------------------------------------------------------------------------------- /test/6/normal_diff.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/6/normal_diff.ok -------------------------------------------------------------------------------- /test/6/vimrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/README.md -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbra/vim-diff-enhanced/HEAD/test/test.sh --------------------------------------------------------------------------------