diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-09-04 16:39:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 16:39:48 +0200 |
commit | ef5a09d4fc6b87343755db681dbc1c339b428296 (patch) | |
tree | dbf9bff6b291d8f6c978a79d44ba92320b296fc3 /src/nvim/main.c | |
parent | dd465bbccc72665a8e4dbfde09aa7f866b328fef (diff) | |
parent | 1832d18083446255aa04d63fac033aea08a65ed0 (diff) | |
download | rneovim-ef5a09d4fc6b87343755db681dbc1c339b428296.tar.gz rneovim-ef5a09d4fc6b87343755db681dbc1c339b428296.tar.bz2 rneovim-ef5a09d4fc6b87343755db681dbc1c339b428296.zip |
Merge pull request #12816 from vigoux/decorations
New Decorations API (not finalized, but we gonna build on this)
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. |