diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-09-25 15:26:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-25 06:26:37 -0700 |
commit | 91e912f8d40284c74d4a997c8c95961eebb35d91 (patch) | |
tree | a34a56d5f7b08225ffef8e076d4947ec12762ccf /src/nvim/decoration_provider.c | |
parent | 4686bda06c9f3b7b309cfdc3782effdd465b4010 (diff) | |
download | rneovim-91e912f8d40284c74d4a997c8c95961eebb35d91.tar.gz rneovim-91e912f8d40284c74d4a997c8c95961eebb35d91.tar.bz2 rneovim-91e912f8d40284c74d4a997c8c95961eebb35d91.zip |
refactor: move klib out of src/nvim/ #20341
It's confusing to mix vendored dependencies with neovim source code. A
clean separation is simpler to keep track of and simpler to document.
Diffstat (limited to 'src/nvim/decoration_provider.c')
-rw-r--r-- | src/nvim/decoration_provider.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/decoration_provider.c b/src/nvim/decoration_provider.c index a11a4d2b04..48664421a3 100644 --- a/src/nvim/decoration_provider.c +++ b/src/nvim/decoration_provider.c @@ -1,13 +1,13 @@ // This is an open source non-commercial project. Dear PVS-Studio, please check // it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com +#include "klib/kvec.h" #include "nvim/api/extmark.h" #include "nvim/api/private/helpers.h" #include "nvim/buffer.h" #include "nvim/decoration.h" #include "nvim/decoration_provider.h" #include "nvim/highlight.h" -#include "nvim/lib/kvec.h" #include "nvim/lua/executor.h" static kvec_t(DecorProvider) decor_providers = KV_INITIAL_VALUE; |