diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-05-05 16:36:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-05-05 16:36:06 +0200 |
commit | b833c1ef7be1ed216a967dd7262473ec97084fa2 (patch) | |
tree | a93b01ba1f8ddf6df25db24f56fafc79e2bc13ee /src/testdir/screendump.vim | |
parent | 248be5c5de723c4e2715c574fd920b8b1a1dfebb (diff) | |
download | vim-git-b833c1ef7be1ed216a967dd7262473ec97084fa2.tar.gz |
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.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim index 7065fa051..3c424a093 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] |