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 4d6f32c commit dd74ab9Copy full SHA for dd74ab9
src/testdir/test_channel.vim
@@ -368,11 +368,11 @@ func Ch_raw_one_time_callback(port)
368
call ch_setoptions(handle, {'mode': 'raw'})
369
370
" The message are sent raw, we do our own JSON strings here.
371
- call ch_sendraw(handle, "[1, \"hello!\"]", {'callback': 'Ch_handleRaw1'})
+ call ch_sendraw(handle, "[1, \"hello!\"]\n", {'callback': 'Ch_handleRaw1'})
372
call WaitFor('g:Ch_reply1 != ""')
373
call assert_equal("[1, \"got it\"]", g:Ch_reply1)
374
- call ch_sendraw(handle, "[2, \"echo something\"]", {'callback': 'Ch_handleRaw2'})
375
- call ch_sendraw(handle, "[3, \"wait a bit\"]", {'callback': 'Ch_handleRaw3'})
+ call ch_sendraw(handle, "[2, \"echo something\"]\n", {'callback': 'Ch_handleRaw2'})
+ call ch_sendraw(handle, "[3, \"wait a bit\"]\n", {'callback': 'Ch_handleRaw3'})
376
call WaitFor('g:Ch_reply2 != ""')
377
call assert_equal("[2, \"something\"]", g:Ch_reply2)
378
" wait for the 200 msec delayed reply
src/version.c
@@ -763,6 +763,8 @@ static char *(features[]) =
763
764
static int included_patches[] =
765
{ /* Add new patch number below this line */
766
+/**/
767
+ 2260,
768
/**/
769
2259,
770
0 commit comments