summaryrefslogtreecommitdiff
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-04-30 16:49:58 +0200
committerBram Moolenaar <Bram@vim.org>2016-04-30 16:49:58 +0200
commit868cfc19bb079a16ca58884b551486566f35419b (patch)
tree51a4d668cbe38fd84b20a0da60378ab5dd71404c /runtime/optwin.vim
parent8a24b794b89916c8074892e7b25121a21f1fa9c9 (diff)
downloadvim-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.vim2
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")