diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-04-30 16:49:58 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-04-30 16:49:58 +0200 |
commit | 868cfc19bb079a16ca58884b551486566f35419b (patch) | |
tree | 51a4d668cbe38fd84b20a0da60378ab5dd71404c /runtime/optwin.vim | |
parent | 8a24b794b89916c8074892e7b25121a21f1fa9c9 (diff) | |
download | vim-868cfc19bb079a16ca58884b551486566f35419b.zip |
patch 7.4.1809
Problem: Using wrong short option name for 'termguicolors'.
Solution: Use the option name.
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 7576cec6d..b780e0397 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -414,7 +414,7 @@ call append("$", "hlsearch\thighlight all matches for the last used search patte call <SID>BinOptionG("hls", &hls) if has("termguicolors") call append("$", "termguicolors\tuse GUI colors for the terminal") - call <SID>BinOptionG("tgc", &gcol) + call <SID>BinOptionG("tgc", &tgc) endif if has("syntax") call append("$", "cursorcolumn\thighlight the screen column of the cursor") |