We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5076187 commit f65cc66Copy full SHA for f65cc66
2 files changed
src/testdir/test_diffmode.vim
@@ -34,7 +34,8 @@ func Test_diff_fold_sync()
34
call win_gotoid(winone)
35
call assert_equal(23, getcurpos()[1])
36
37
- call assert_equal(1, g:update_count)
+ " depending on how redraw is done DiffUpdated may be triggered once or twice
38
+ call assert_inrange(1, 2, g:update_count)
39
au! DiffUpdated
40
41
windo diffoff
src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
735
736
static int included_patches[] =
737
{ /* Add new patch number below this line */
738
+/**/
739
+ 5166,
740
/**/
741
5165,
742
0 commit comments