1
0
forked from aniani/vim

patch 8.0.1034: sending buffer lines to terminal doesn't work on MS-Windows

Problem:    Sending buffer lines to terminal doesn't work on MS-Windows.
Solution:   Send CTRL-D to mark the end of the text. (Yasuhiro Matsumoto,
            closes #2043) Add the "eof_chars" option.
This commit is contained in:
Bram Moolenaar
2017-09-02 14:54:21 +02:00
parent 995e4afcfe
commit 3346cc4ffb
6 changed files with 59 additions and 6 deletions

View File

@@ -489,22 +489,22 @@ func Test_terminal_noblock()
endfunc
func Test_terminal_write_stdin()
" Todo: make this work on all systems.
if !has('unix')
if !executable('wc')
call ch_log('Test_terminal_write_stdin() is skipped because system doesn''t have wc command')
return
endif
new
call setline(1, ['one', 'two', 'three'])
%term wc
call WaitFor('getline(1) != ""')
let nrs = split(getline(1))
let nrs = split(getline('$'))
call assert_equal(['3', '3', '14'], nrs)
bwipe
call setline(1, ['one', 'two', 'three', 'four'])
2,3term wc
call WaitFor('getline(1) != ""')
let nrs = split(getline(1))
let nrs = split(getline('$'))
call assert_equal(['2', '2', '10'], nrs)
bwipe