diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-07-03 01:55:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-03 01:55:09 -0400 |
commit | c402f6e7a9135490a9f05e4cac733e41c6815b2d (patch) | |
tree | 9e90c402b768cbd2bf013447d84ebcba19b79c08 /src/nvim/globals.h | |
parent | f80eb768c75de2065626203de001738e1dda436e (diff) | |
parent | 173d366a5b0b5f0784a1da8aef4fe5d0cab7e1ec (diff) | |
download | rneovim-c402f6e7a9135490a9f05e4cac733e41c6815b2d.tar.gz rneovim-c402f6e7a9135490a9f05e4cac733e41c6815b2d.tar.bz2 rneovim-c402f6e7a9135490a9f05e4cac733e41c6815b2d.zip |
Merge #5001 from justinmk/t_colors
TUI: infer 256 colors more liberally; listen to unibilium in other cases
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 42fde50bee..7f91903106 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -414,7 +414,7 @@ EXTERN int provider_call_nesting INIT(= 0); EXTERN char_u hash_removed; -EXTERN int t_colors INIT(= 0); /* int value of T_CCO */ +EXTERN int t_colors INIT(= 256); // int value of T_CCO /* * When highlight_match is TRUE, highlight a match, starting at the cursor |