-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 8.1.0389: :behave command is not tested. Add a test. (Dominique Pelle, closes #3429) - 8.1.0390: Scrollbars are not tested. Add test_scrollbar() and a test. - 8.1.0391: Building in a shadow directory fails. Don't link the xdiff directory but what's in it. (closes #3428) - 8.1.0392: Error while typing :/foo/s// with 'incsearch' enabled. Do not give search errors when highlighting matches. - 8.1.0393: Not all white space difference options available. Add "iblank", "iwhiteall" and "iwhiteeol" to 'diffopt'. - 8.1.0394: Diffs are not always updated correctly. When using internal diff update for any changes properly. - 8.1.0395: Compiler warning on 64-bit MS-Windows. Add type cast. (Mike Williams) - 8.1.0396: Another compiler warning on 64-bit MS-Windows. Add type cast. (Mike Williams)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
23 files
+19 −0 | runtime/doc/eval.txt | |
+1 −0 | src/Make_all.mak | |
+3 −1 | src/Makefile | |
+77 −25 | src/diff.c | |
+41 −0 | src/evalfunc.c | |
+27 −26 | src/ex_docmd.c | |
+1 −1 | src/ex_getln.c | |
+9 −0 | src/main.c | |
+6 −1 | src/misc1.c | |
+1 −0 | src/proto/diff.pro | |
+1 −1 | src/proto/ex_docmd.pro | |
+2 −1 | src/structs.h | |
+20 −0 | src/testdir/dumps/Test_diff_17.dump | |
+20 −0 | src/testdir/dumps/Test_diff_18.dump | |
+20 −0 | src/testdir/dumps/Test_diff_19.dump | |
+20 −0 | src/testdir/dumps/Test_diff_20.dump | |
+1 −0 | src/testdir/test_alot.vim | |
+29 −0 | src/testdir/test_behave.vim | |
+43 −17 | src/testdir/test_diffmode.vim | |
+35 −0 | src/testdir/test_gui.vim | |
+4 −0 | src/testdir/test_search.vim | |
+16 −0 | src/version.c | |
+1 −1 | src/xdiff/xutils.c |