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 d0fef76 commit 46e2f36Copy full SHA for 46e2f36
1 file changed
src/testdir/test_terminal.vim
@@ -463,7 +463,12 @@ func Test_terminal_noblock()
463
if has('mac')
464
" The shell or something else has a problem dealing with more than 1000
465
" characters at the same time.
466
- let len = 1000
+ if has('gui_running')
467
+ " PIPE_BUF is 512
468
+ let len = 512 - 5 - 1
469
+ else
470
+ let len = 1000
471
+ endif
472
else
473
let len = 5000
474
endif
0 commit comments