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/os | |
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/os')
-rw-r--r-- | src/nvim/os/pty_conpty_win.h | 2 | ||||
-rw-r--r-- | src/nvim/os/pty_process_unix.c | 2 | ||||
-rw-r--r-- | src/nvim/os/shell.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/os/pty_conpty_win.h b/src/nvim/os/pty_conpty_win.h index 15e7c3da0c..0c25a5970e 100644 --- a/src/nvim/os/pty_conpty_win.h +++ b/src/nvim/os/pty_conpty_win.h @@ -1,7 +1,7 @@ #ifndef NVIM_OS_PTY_CONPTY_WIN_H #define NVIM_OS_PTY_CONPTY_WIN_H -#include "nvim/lib/kvec.h" +#include "klib/kvec.h" #include "nvim/os/input.h" #ifndef HPCON diff --git a/src/nvim/os/pty_process_unix.c b/src/nvim/os/pty_process_unix.c index c5d6af0ff6..0b7af87267 100644 --- a/src/nvim/os/pty_process_unix.c +++ b/src/nvim/os/pty_process_unix.c @@ -31,11 +31,11 @@ #include <uv.h> +#include "klib/klist.h" #include "nvim/event/loop.h" #include "nvim/event/process.h" #include "nvim/event/rstream.h" #include "nvim/event/wstream.h" -#include "nvim/lib/klist.h" #include "nvim/log.h" #include "nvim/os/os.h" #include "nvim/os/pty_process_unix.h" diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c index ca3e32e871..9766c8f3d9 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -7,6 +7,7 @@ #include <string.h> #include <uv.h> +#include "klib/kvec.h" #include "nvim/ascii.h" #include "nvim/charset.h" #include "nvim/eval.h" @@ -15,7 +16,6 @@ #include "nvim/event/rstream.h" #include "nvim/ex_cmds.h" #include "nvim/fileio.h" -#include "nvim/lib/kvec.h" #include "nvim/log.h" #include "nvim/main.h" #include "nvim/memline.h" |