From 989b585e105b4f343f639abf5daf820de19d4a26 Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Sun, 8 Apr 2018 09:51:22 +0200 Subject: highlight: refactor to use stateful representation This allows us to keep track of the source higlight groups, and not only the final combined highlights. --- src/nvim/main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/main.c') diff --git a/src/nvim/main.c b/src/nvim/main.c index 460711cd36..528fd921bc 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -183,6 +183,7 @@ void early_init(void) eval_init(); // init global variables init_path(argv0 ? argv0 : "nvim"); init_normal_cmds(); // Init the table of Normal mode commands. + highlight_init(); #if defined(HAVE_LOCALE_H) // Setup to use the current locale (for ctype() and many other things). -- cgit