comparison src/testdir/test_highlight.vim @ 13452:9b09f6e470e0 v8.0.1600

patch 8.0.1600: crash when setting t_Co to zero when 'termguicolors' is set commit https://github.com/vim/vim/commit/f708ac592f47100a36f2bc12ec98ea6357fdfa27 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 12 21:48:32 2018 +0100 patch 8.0.1600: crash when setting t_Co to zero when 'termguicolors' is set Problem: Crash when setting t_Co to zero when 'termguicolors' is set. Solution: Use IS_CTERM instead of checking the number of colors. (closes #2710)
author Christian Brabandt <cb@256bit.org>
date Mon, 12 Mar 2018 22:00:06 +0100
parents 97f0c74976c6
children 1720b96e53b6
comparison
equal deleted inserted replaced
13451:be0536e2f27f 13452:9b09f6e470e0
512 call Check_lcs_eol_attrs(attrs, 1, 10) 512 call Check_lcs_eol_attrs(attrs, 1, 10)
513 513
514 bwipe! 514 bwipe!
515 diffoff 515 diffoff
516 endfunc 516 endfunc
517
518 func Test_termguicolors()
519 if !exists('+termguicolors')
520 return
521 endif
522
523 " Basic test that setting 'termguicolors' works with one color.
524 set termguicolors
525 redraw
526 set t_Co=1
527 redraw
528 set t_Co=0
529 redraw
530 endfunc