From baf93d96063ceab109ecf16046a51e861a9c2c26 Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Tue, 5 Feb 2019 16:17:23 +0100 Subject: UI: always use contrete colors for default_colors_set But add an escape hatch needed for external TUI, so it still can use terminal emulator defaults. --- src/nvim/ui.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nvim/ui.h') diff --git a/src/nvim/ui.h b/src/nvim/ui.h index a5a0fa8b75..49a30fe78b 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -18,6 +18,7 @@ typedef enum { kUILinegrid, kUIMultigrid, kUIHlState, + kUITermColors, kUIExtCount, } UIExtension; @@ -29,6 +30,7 @@ EXTERN const char *ui_ext_names[] INIT(= { "ext_linegrid", "ext_multigrid", "ext_hlstate", + "ext_termcolors", }); -- cgit