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 b3e2f00 commit e246925Copy full SHA for e246925
src/testdir/test_channel.vim
@@ -1,7 +1,11 @@
1
" Test for channel functions.
2
scriptencoding utf-8
3
4
-" This requires the Python command to run the test server.
+if !has('channel')
5
+ finish
6
+endif
7
+
8
+" This test requires the Python command to run the test server.
9
" This most likely only works on Unix and Windows console.
10
if has('unix')
11
" We also need the pkill command to make sure the server can be stopped.
src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
742
743
static int included_patches[] =
744
{ /* Add new patch number below this line */
745
+/**/
746
+ 1257,
747
/**/
748
1256,
749
0 commit comments