diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-11-07 15:34:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-07 15:34:32 +0100 |
commit | 643f4a178751df34b27189f7aebea313b17bad3b (patch) | |
tree | ca85909dc4e89115dd5c8b5d79158185bc3ca8ff /src/nvim/main.c | |
parent | e5d83a3bf344a4ab0ef539d70004c2b771e1044a (diff) | |
parent | 8497d4b3ea9822cfb4d2bf2437997e837fd4827c (diff) | |
download | rneovim-643f4a178751df34b27189f7aebea313b17bad3b.tar.gz rneovim-643f4a178751df34b27189f7aebea313b17bad3b.tar.bz2 rneovim-643f4a178751df34b27189f7aebea313b17bad3b.zip |
Merge pull request #13241 from bfredl/decoration
decoration: split out "decoration" from "extmark" module
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 27bf5c45c6..99a3657bf9 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -23,7 +23,7 @@ #include "nvim/ex_cmds.h" #include "nvim/ex_cmds2.h" #include "nvim/ex_docmd.h" -#include "nvim/extmark.h" +#include "nvim/decoration.h" #include "nvim/fileio.h" #include "nvim/fold.h" #include "nvim/getchar.h" @@ -163,7 +163,7 @@ void early_init(mparm_T *paramp) env_init(); fs_init(); handle_init(); - extmark_init(); + decor_init(); eval_init(); // init global variables init_path(argv0 ? argv0 : "nvim"); init_normal_cmds(); // Init the table of Normal mode commands. |