diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-08-19 15:48:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 15:48:22 +0200 |
commit | d088066fa1d9a4d897890e35b5dd0cfb4e8b365b (patch) | |
tree | befd5e74dc32c86ce8feb03ac26a3bcc05761e3f /src/nvim/main.c | |
parent | 19a0d90bb3479bb6516be229f6001646329d842f (diff) | |
parent | bb4b4d79a8dd0eb60aa37f0b889558c4ae8e9317 (diff) | |
download | rneovim-d088066fa1d9a4d897890e35b5dd0cfb4e8b365b.tar.gz rneovim-d088066fa1d9a4d897890e35b5dd0cfb4e8b365b.tar.bz2 rneovim-d088066fa1d9a4d897890e35b5dd0cfb4e8b365b.zip |
Merge pull request #15422 from bfredl/syn_name2id_go_brr
feat(highlights): some improvements and perf fixes
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 2cdf01b146..136608afdf 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -166,6 +166,7 @@ void early_init(mparm_T *paramp) init_path(argv0 ? argv0 : "nvim"); init_normal_cmds(); // Init the table of Normal mode commands. highlight_init(); + syntax_init(); #ifdef WIN32 OSVERSIONINFO ovi; |