Patch 7.4.1806 Problem: 'termguicolors' option missing from the options window. Solution: Add the entry. Files: runtime/optwin.vim
*** ../vim-7.4.1805/runtime/optwin.vim 2016-04-21 14:05:16.299162032 +0200 --- runtime/optwin.vim 2016-04-30 15:15:35.778200904 +0200 *************** *** 1,7 **** " These commands create the option window. " " Maintainer: Bram Moolenaar <[email protected]> ! " Last Change: 2016 Apr 21 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 --- 1,7 ---- " These commands create the option window. " " Maintainer: Bram Moolenaar <[email protected]> ! " Last Change: 2016 Apr 30 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 *************** *** 412,417 **** --- 412,421 ---- call <SID>OptionG("hl", &hl) call append("$", "hlsearch\thighlight all matches for the last used search pattern") call <SID>BinOptionG("hls", &hls) + if has("termtruecolor") + call append("$", "termguicolors\tuse GUI colors for the terminal") + call <SID>BinOptionG("tgc", &gcol) + endif if has("syntax") call append("$", "cursorcolumn\thighlight the screen column of the cursor") call append("$", "\t(local to window)") *** ../vim-7.4.1805/src/version.c 2016-04-30 15:08:12.095333714 +0200 --- src/version.c 2016-04-30 15:16:44.529408904 +0200 *************** *** 755,756 **** --- 755,758 ---- { /* Add new patch number below this line */ + /**/ + 1806, /**/ -- BRIDGEKEEPER: What is your favorite editor? GAWAIN: Emacs ... No, Viiiiiiiiiiimmmmmmm! "Monty Python and the Holy editor wars" PYTHON (MONTY) SOFTWARE LTD /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
