From 08b1055c0955cd5b7da52145b60e607185a866ae Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 28 Oct 2022 22:48:51 +0800 Subject: 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 --- runtime/optwin.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') 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 OptionG("hf", &hf) call Header("moving around, searching and patterns") call append("$", "whichwrap\tlist of flags specifying which commands wrap to another line") -call OptionG("ww") +call OptionG("ww", &ww) call append("$", "startofline\tmany jump commands move the cursor to the first non-blank") call append("$", "\tcharacter of a line") call BinOptionG("sol", &sol) -- cgit