aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/shada.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2022-09-25 15:26:37 +0200
committerGitHub <noreply@github.com>2022-09-25 06:26:37 -0700
commit91e912f8d40284c74d4a997c8c95961eebb35d91 (patch)
treea34a56d5f7b08225ffef8e076d4947ec12762ccf /src/nvim/shada.c
parent4686bda06c9f3b7b309cfdc3782effdd465b4010 (diff)
downloadrneovim-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/shada.c')
-rw-r--r--src/nvim/shada.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/shada.c b/src/nvim/shada.c
index f735829030..7580cc8897 100644
--- a/src/nvim/shada.c
+++ b/src/nvim/shada.c
@@ -11,6 +11,8 @@
#include <string.h>
#include <uv.h>
+#include "klib/khash.h"
+#include "klib/kvec.h"
#include "nvim/api/private/defs.h"
#include "nvim/api/private/helpers.h"
#include "nvim/ascii.h"
@@ -25,8 +27,6 @@
#include "nvim/fileio.h"
#include "nvim/garray.h"
#include "nvim/globals.h"
-#include "nvim/lib/khash.h"
-#include "nvim/lib/kvec.h"
#include "nvim/macros.h"
#include "nvim/mark.h"
#include "nvim/memory.h"