diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-09-09 15:10:52 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-09-09 15:10:52 +0200 |
commit | 4507f6ada590fb6274b21c416190dfecb23dcf1b (patch) | |
tree | b9f83c53e675036bb20fcb575f8a68f66abbd3aa /runtime/optwin.vim | |
parent | 29a86ffee794bc1a0efde215c203cf9529047252 (diff) | |
download | vim-git-4507f6ada590fb6274b21c416190dfecb23dcf1b.tar.gz |
patch 8.2.1642: otions test failsv8.2.1642
Problem: Otions test fails.
Solution: Correct call to OptionG().
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 857f83f49..dd3a1e515 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -239,7 +239,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) |