neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 08b1055c0955cd5b7da52145b60e607185a866ae
parent a7912b190d135c73821b93aab3e1c500f1533e71
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Fri, 28 Oct 2022 22:48:51 +0800

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>

Diffstat:
Mruntime/optwin.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)