summaryrefslogtreecommitdiffstats
path: root/src/testdir/screendump.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-05-05 16:36:06 +0200
committerBram Moolenaar <Bram@vim.org>2018-05-05 16:36:06 +0200
commitb833c1ef7be1ed216a967dd7262473ec97084fa2 (patch)
treea93b01ba1f8ddf6df25db24f56fafc79e2bc13ee /src/testdir/screendump.vim
parent248be5c5de723c4e2715c574fd920b8b1a1dfebb (diff)
patch 8.0.1794: duplicate term options after renamingv8.0.1794
Problem: Duplicate term options after renaming. Solution: Remove the old names 'termkey', 'termsize' and 'terminalscroll'.
Diffstat (limited to 'src/testdir/screendump.vim')
-rw-r--r--src/testdir/screendump.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim
index 7065fa0510..3c424a093c 100644
--- a/src/testdir/screendump.vim
+++ b/src/testdir/screendump.vim
@@ -57,7 +57,7 @@ func RunVimInTerminal(arguments, options)
" 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, 'term_cols': cols})
- if &termsize == ''
+ if &termwinsize == ''
call assert_equal([rows, cols], term_getsize(buf))
else
let rows = term_getsize(buf)[0]