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

@@ -81,6 +81,7 @@
#include <string.h>
#include "auto/config.h"
#include "klib/kvec.h"
#include "nvim/ascii.h"
#include "nvim/buffer.h"
#include "nvim/buffer_updates.h"
@@ -94,7 +95,6 @@
#include "nvim/fold.h"
#include "nvim/garray.h"
#include "nvim/getchar.h"
#include "nvim/lib/kvec.h"
#include "nvim/mark.h"
#include "nvim/memline.h"
#include "nvim/memory.h"