diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-01-21 15:26:55 +0100 |
---|---|---|
committer | Thomas Vigouroux <tomvig38@gmail.com> | 2020-09-03 15:40:24 +0200 |
commit | 49f5b57587ececf37415c64de6224e09baa80f48 (patch) | |
tree | 6b6f6b714729557549a3947953e3c2a789906817 /src/nvim/main.c | |
parent | d3302573ba5f117fe7e1316be27321c3d9ffd261 (diff) | |
download | rneovim-49f5b57587ececf37415c64de6224e09baa80f48.tar.gz rneovim-49f5b57587ececf37415c64de6224e09baa80f48.tar.bz2 rneovim-49f5b57587ececf37415c64de6224e09baa80f48.zip |
decor: sketch new decorations API
return decorations back
lol no nvim_buf_get_virtual_text
share decorations that are hl only to avoid alloc avalanche
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index f79fb57eae..1374c5eb5d 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -21,6 +21,7 @@ #include "nvim/ex_cmds.h" #include "nvim/ex_cmds2.h" #include "nvim/ex_docmd.h" +#include "nvim/extmark.h" #include "nvim/fileio.h" #include "nvim/fold.h" #include "nvim/getchar.h" @@ -160,6 +161,7 @@ void early_init(mparm_T *paramp) env_init(); fs_init(); handle_init(); + extmark_init(); eval_init(); // init global variables init_path(argv0 ? argv0 : "nvim"); init_normal_cmds(); // Init the table of Normal mode commands. |