summaryrefslogtreecommitdiffstats
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-04-21 20:03:20 +0200
committerBram Moolenaar <Bram@vim.org>2018-04-21 20:03:20 +0200
commit6d150f783d5d3820fe69734dda1e79b8276a84d2 (patch)
tree125a3491b68b80a72f67f07194d33cdbabc68d70 /runtime/optwin.vim
parente1fc51558dc14906a8d9f6a6e7bb1ac2a6ba8f3d (diff)
patch 8.0.1743: terminal window options are named inconsistentlyv8.0.1743
Problem: Terminal window options are named inconsistently. Solution: prefix terminal window options with "termwin". Keep the old names for now as an alias.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r--runtime/optwin.vim11
1 files changed, 7 insertions, 4 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index 128e92e65c..d36ddea2c0 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -506,12 +506,15 @@ if has("cursorbind")
call <SID>BinOptionL("crb")
endif
if has("terminal")
- call append("$", "termsize\tsize of a terminal window")
+ call append("$", "termwinsize\tsize of a terminal window")
call append("$", "\t(local to window)")
- call <SID>OptionL("tms")
- call append("$", "termkey\tkey that precedes Vim commands in a terminal window")
+ call <SID>OptionL("tws")
+ call append("$", "termwinkey\tkey that precedes Vim commands in a terminal window")
call append("$", "\t(local to window)")
- call <SID>OptionL("tk")
+ call <SID>OptionL("twk")
+ call append("$", "termwinscroll\tmax number of lines to keep for scrollback in a terminal window")
+ call append("$", "\t(local to window)")
+ call <SID>OptionL("twsl")
if exists("&winptydll")
call append("$", "winptydll\tname of the winpty dynamic library")
call <SID>OptionG("winptydll", &winptydll)