aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-10-28 22:48:51 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-10-28 22:48:59 +0800
commit08b1055c0955cd5b7da52145b60e607185a866ae (patch)
tree7e90020f97b57e795b416d21a4089e3d81dce2ee
parenta7912b190d135c73821b93aab3e1c500f1533e71 (diff)
downloadrneovim-08b1055c0955cd5b7da52145b60e607185a866ae.tar.gz
rneovim-08b1055c0955cd5b7da52145b60e607185a866ae.tar.bz2
rneovim-08b1055c0955cd5b7da52145b60e607185a866ae.zip
vim-patch:8.2.1642: otions test fails
Problem: Otions test fails. Solution: Correct call to OptionG(). https://github.com/vim/vim/commit/4507f6ada590fb6274b21c416190dfecb23dcf1b Co-authored-by: Bram Moolenaar <Bram@vim.org>
-rw-r--r--runtime/optwin.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index c85c7f7a10..6af8abc205 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -248,7 +248,7 @@ call <SID>OptionG("hf", &hf)
call <SID>Header("moving around, searching and patterns")
call append("$", "whichwrap\tlist of flags specifying which commands wrap to another line")
-call <SID>OptionG("ww")
+call <SID>OptionG("ww", &ww)
call append("$", "startofline\tmany jump commands move the cursor to the first non-blank")
call append("$", "\tcharacter of a line")
call <SID>BinOptionG("sol", &sol)