diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-11-07 09:24:00 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-11-07 09:55:17 +0100 |
commit | 8497d4b3ea9822cfb4d2bf2437997e837fd4827c (patch) | |
tree | dc35be5a218677b4a927fd08d3d28a7e1fb1d9fa /src/nvim/ex_cmds.c | |
parent | da134270d3e9f8a4824b0e0540bf017f7e59b06e (diff) | |
download | rneovim-8497d4b3ea9822cfb4d2bf2437997e837fd4827c.tar.gz rneovim-8497d4b3ea9822cfb4d2bf2437997e837fd4827c.tar.bz2 rneovim-8497d4b3ea9822cfb4d2bf2437997e837fd4827c.zip |
decoration: split out "decoration" from "extmark" module
Decorations will only grow more complex. move the to a separate
file, so that extmark.c remains about extmarks.
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 41137bf2db..3e49d7845d 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -41,6 +41,7 @@ #include "nvim/main.h" #include "nvim/mark.h" #include "nvim/extmark.h" +#include "nvim/decoration.h" #include "nvim/mbyte.h" #include "nvim/memline.h" #include "nvim/message.h" |