├── .gitignore ├── README.md ├── ZFDirDiff.bat ├── ZFDirDiff.sh ├── doc └── zfdirdiff.txt ├── misc ├── apiImpl.py ├── diff.bat ├── diff.sh ├── listDir.bat ├── listDir.sh ├── listFile.bat └── listFile.sh ├── nerdtree_plugin └── nerdtree_ZFDirDiff.vim ├── plugin ├── api.vim ├── apiImpl.vim ├── apiImpl_cmd.vim ├── apiImpl_cmd_python.vim ├── apiImpl_job.vim ├── exclude.vim ├── highlight.vim ├── mark.vim ├── op.vim └── ui.vim ├── preview.png └── test ├── left └── p0 │ └── p1 │ ├── a.txt │ ├── c.txt │ ├── conflict_left │ └── a.txt │ ├── conflict_right │ ├── dir │ ├── a.txt │ └── b.txt │ └── dir_same │ └── a.txt └── right └── p0 └── p1 ├── a.txt ├── b.txt ├── conflict_left ├── conflict_right └── a.txt └── dir_same └── a.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /doc/tags 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/README.md -------------------------------------------------------------------------------- /ZFDirDiff.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/ZFDirDiff.bat -------------------------------------------------------------------------------- /ZFDirDiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/ZFDirDiff.sh -------------------------------------------------------------------------------- /doc/zfdirdiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/doc/zfdirdiff.txt -------------------------------------------------------------------------------- /misc/apiImpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/misc/apiImpl.py -------------------------------------------------------------------------------- /misc/diff.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/misc/diff.bat -------------------------------------------------------------------------------- /misc/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/misc/diff.sh -------------------------------------------------------------------------------- /misc/listDir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/misc/listDir.bat -------------------------------------------------------------------------------- /misc/listDir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/misc/listDir.sh -------------------------------------------------------------------------------- /misc/listFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/misc/listFile.bat -------------------------------------------------------------------------------- /misc/listFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/misc/listFile.sh -------------------------------------------------------------------------------- /nerdtree_plugin/nerdtree_ZFDirDiff.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/nerdtree_plugin/nerdtree_ZFDirDiff.vim -------------------------------------------------------------------------------- /plugin/api.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/api.vim -------------------------------------------------------------------------------- /plugin/apiImpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/apiImpl.vim -------------------------------------------------------------------------------- /plugin/apiImpl_cmd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/apiImpl_cmd.vim -------------------------------------------------------------------------------- /plugin/apiImpl_cmd_python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/apiImpl_cmd_python.vim -------------------------------------------------------------------------------- /plugin/apiImpl_job.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/apiImpl_job.vim -------------------------------------------------------------------------------- /plugin/exclude.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/exclude.vim -------------------------------------------------------------------------------- /plugin/highlight.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/highlight.vim -------------------------------------------------------------------------------- /plugin/mark.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/mark.vim -------------------------------------------------------------------------------- /plugin/op.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/op.vim -------------------------------------------------------------------------------- /plugin/ui.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/plugin/ui.vim -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/preview.png -------------------------------------------------------------------------------- /test/left/p0/p1/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/test/left/p0/p1/a.txt -------------------------------------------------------------------------------- /test/left/p0/p1/c.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | -------------------------------------------------------------------------------- /test/left/p0/p1/conflict_left/a.txt: -------------------------------------------------------------------------------- 1 | aaa 2 | -------------------------------------------------------------------------------- /test/left/p0/p1/conflict_right: -------------------------------------------------------------------------------- 1 | aaa 2 | -------------------------------------------------------------------------------- /test/left/p0/p1/dir/a.txt: -------------------------------------------------------------------------------- 1 | aaa 2 | -------------------------------------------------------------------------------- /test/left/p0/p1/dir/b.txt: -------------------------------------------------------------------------------- 1 | bbb 2 | -------------------------------------------------------------------------------- /test/left/p0/p1/dir_same/a.txt: -------------------------------------------------------------------------------- 1 | aaa 2 | -------------------------------------------------------------------------------- /test/right/p0/p1/a.txt: -------------------------------------------------------------------------------- 1 | aaa 2 | bbb 3 | aaa 4 | -------------------------------------------------------------------------------- /test/right/p0/p1/b.txt: -------------------------------------------------------------------------------- 1 | bbb 2 | -------------------------------------------------------------------------------- /test/right/p0/p1/conflict_left: -------------------------------------------------------------------------------- 1 | aaa 2 | -------------------------------------------------------------------------------- /test/right/p0/p1/conflict_right/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSaberLv0/ZFVimDirDiff/HEAD/test/right/p0/p1/conflict_right/a.txt -------------------------------------------------------------------------------- /test/right/p0/p1/dir_same/a.txt: -------------------------------------------------------------------------------- 1 | aaa 2 | --------------------------------------------------------------------------------