• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revision3fd7d544eedbc35702cde2800d32fa494be8776b (tree)
Time2019-10-20 03:45:04
AuthorBram Moolenaar <Bram@vim....>
CommiterBram Moolenaar

Log Message

patch 8.1.2185: syntax test fails

Commit: https://github.com/vim/vim/commit/bbfd1562aeaa5b40b6451effc399846b692d6992
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 19 20:38:15 2019 +0200

patch 8.1.2185: syntax test fails
Problem: Syntax test fails.
Solution: Add missing file patch.

Change Summary

Incremental Difference

diff -r afd24c11369c -r 3fd7d544eedb src/testdir/test_syntax.vim
--- a/src/testdir/test_syntax.vim Sat Oct 19 20:30:04 2019 +0200
+++ b/src/testdir/test_syntax.vim Sat Oct 19 20:45:04 2019 +0200
@@ -555,6 +555,7 @@
555555 \ "\tfor (int i = 0; i < count; ++i) {",
556556 \ "\t break;",
557557 \ "\t}",
558+ \ "\tNote: asdf",
558559 \ '}',
559560 \ ], 'Xtest.c')
560561
@@ -562,7 +563,8 @@
562563 " response to t_RB corrects it to "light".
563564 let $COLORFGBG = '15;0'
564565
565- let buf = RunVimInTerminal('Xtest.c', {})
566+ let buf = RunVimInTerminal('Xtest.c', #{rows: 22})
567+ call term_sendkeys(buf, ":syn keyword Search Note\r")
566568 call term_sendkeys(buf, ":set hlsearch\r")
567569 call term_sendkeys(buf, "/endif\r")
568570 call term_sendkeys(buf, "vjfC")
diff -r afd24c11369c -r 3fd7d544eedb src/version.c
--- a/src/version.c Sat Oct 19 20:30:04 2019 +0200
+++ b/src/version.c Sat Oct 19 20:45:04 2019 +0200
@@ -742,6 +742,8 @@
742742 static int included_patches[] =
743743 { /* Add new patch number below this line */
744744 /**/
745+ 2185,
746+/**/
745747 2184,
746748 /**/
747749 2183,
Show on old repository browser