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.
This commit is contained in:
dundargoc
2022-09-25 15:26:37 +02:00
committed by GitHub
parent 4686bda06c
commit 91e912f8d4
39 changed files with 37 additions and 37 deletions

View File

@@ -30,6 +30,7 @@
#include <assert.h>
#include "klib/kbtree.h"
#include "nvim/api/extmark.h"
#include "nvim/buffer.h"
#include "nvim/buffer_updates.h"
@@ -37,7 +38,6 @@
#include "nvim/decoration.h"
#include "nvim/extmark.h"
#include "nvim/globals.h"
#include "nvim/lib/kbtree.h"
#include "nvim/map.h"
#include "nvim/memline.h"
#include "nvim/pos.h"