summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-04-08 22:54:16 +0200
committerChristian Brabandt <cb@256bit.org>2024-04-08 22:55:25 +0200
commitd33cb3f65e112bdb2d57139e9a308b1a9c8ffcc2 (patch)
tree1911bd205a0ba3d83aaef4e2e544b2838d7e0bab
parenta2385c23349935d4bd6780a538f3a8f46a29d952 (diff)
patch 9.1.0281: CI: fails Test_compiler_completionv9.1.0281
Problem: CI: fails Test_compiler_completion Solution: Add pandoc compiler Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/testdir/test_compiler.vim4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/testdir/test_compiler.vim b/src/testdir/test_compiler.vim
index 4b710df07c..26404c610a 100644
--- a/src/testdir/test_compiler.vim
+++ b/src/testdir/test_compiler.vim
@@ -71,10 +71,10 @@ func Test_compiler_completion()
call assert_match('^"compiler ' .. clist .. '$', @:)
call feedkeys(":compiler p\<C-A>\<C-B>\"\<CR>", 'tx')
- call assert_match('"compiler pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:)
+ call assert_match('"compiler pandoc pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:)
call feedkeys(":compiler! p\<C-A>\<C-B>\"\<CR>", 'tx')
- call assert_match('"compiler! pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:)
+ call assert_match('"compiler! pandoc pbx perl\( p[a-z]\+\)\+ pylint pyunit', @:)
endfunc
func Test_compiler_error()
diff --git a/src/version.c b/src/version.c
index 5f0c909847..1acc1a8db2 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 281,
+/**/
280,
/**/
279,