1
0
forked from aniani/vim

patch 8.1.1624: when testing in the GUI may try to run gvim in a terminal

Problem:    When testing in the GUI may try to run gvim in a terminal.
Solution:   Add the -v argument. (Yee Cheng Chin, closes #4605)  Don't skip
            tests that work now.
This commit is contained in:
Bram Moolenaar
2019-07-04 14:20:41 +02:00
parent e4b407f536
commit 0d702028fe
5 changed files with 14 additions and 7 deletions

View File

@@ -59,10 +59,8 @@ func RunVimInTerminal(arguments, options)
let cols = get(a:options, 'cols', 75)
let statusoff = get(a:options, 'statusoff', 1)
let cmd = GetVimCommandClean()
let cmd = GetVimCommandCleanTerm() .. a:arguments
" Add -v to have gvim run in the terminal (if possible)
let cmd .= ' -v ' . a:arguments
let buf = term_start(cmd, {
\ 'curwin': 1,
\ 'term_rows': rows,