summaryrefslogtreecommitdiff
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorLuuk van Baal <luukvbaal@gmail.com>2022-09-16 12:52:58 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-16 12:52:58 +0100
commit594f9e09cd68e6277b8aa08094405bc642c5792a (patch)
tree108b28b300454e9269ff35530f8047fc0fc30399 /runtime/optwin.vim
parent3e8b7a6056986caf561f1b6168af7837919df9b9 (diff)
downloadvim-git-594f9e09cd68e6277b8aa08094405bc642c5792a.tar.gz
patch 9.0.0478: test for 'splitscroll' takes too much timev9.0.0478
Problem: Test for 'splitscroll' takes too much time. Solution: Only test some of the combinations. (Luuk van Baal, closes #11139)
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r--runtime/optwin.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index 6b9b5fec9..f2748b4eb 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -515,7 +515,7 @@ call <SID>AddOption("splitbelow", gettext("a new window is put below the current
call <SID>BinOptionG("sb", &sb)
call <SID>AddOption("splitright", gettext("a new window is put right of the current one"))
call <SID>BinOptionG("spr", &spr)
-call <SID>AddOption("splitscroll", gettext("determines scroll behavior when spliting windows"))
+call <SID>AddOption("splitscroll", gettext("determines scroll behavior for split windows"))
call <SID>BinOptionG("spsc", &spsc)
call <SID>AddOption("scrollbind", gettext("this window scrolls together with other bound windows"))
call append("$", "\t" .. s:local_to_window)