diff options
author | watiko <service@mail.watiko.net> | 2016-03-01 06:15:42 +0900 |
---|---|---|
committer | watiko <service@mail.watiko.net> | 2016-03-08 21:16:04 +0900 |
commit | 0e15d1cefaab7cfb13dcfd561a56ef48daa9d7f3 (patch) | |
tree | 2e5f29fd839f0fa07adf5bcccadf2148798c0359 | |
parent | 37b3a4c607a1305ce56e96837e305fd637fde0e8 (diff) | |
download | rneovim-0e15d1cefaab7cfb13dcfd561a56ef48daa9d7f3.tar.gz rneovim-0e15d1cefaab7cfb13dcfd561a56ef48daa9d7f3.tar.bz2 rneovim-0e15d1cefaab7cfb13dcfd561a56ef48daa9d7f3.zip |
syntax.c: Avoid the 'background' adjustment when true color enabled
-rw-r--r-- | src/nvim/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 04e28cf5ca..26f0a6c94b 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -6395,7 +6395,7 @@ do_highlight ( HL_TABLE()[idx].sg_cterm_bg = color + 1; if (is_normal_group) { cterm_normal_bg_color = color + 1; - { + if (!ui_rgb_attached()) { must_redraw = CLEAR; if (color >= 0) { if (t_colors < 16) |