diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 2ba347eee7..674d962b93 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: Bram Moolenaar -" Last Change: 2016 Apr 21 +" Last Change: 2016 Apr 30 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -412,6 +412,10 @@ call append("$", "highlight\twhich highlighting to use for various occasions") call OptionG("hl", &hl) call append("$", "hlsearch\thighlight all matches for the last used search pattern") call BinOptionG("hls", &hls) +if has("termtruecolor") + call append("$", "termguicolors\tuse GUI colors for the terminal") + call BinOptionG("tgc", &gcol) +endif if has("syntax") call append("$", "cursorcolumn\thighlight the screen column of the cursor") call append("$", "\t(local to window)") diff --git a/src/version.c b/src/version.c index 86f38e6390..7c05b284c7 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1806, /**/ 1805, /**/