diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-12 11:59:22 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-15 20:46:01 +0200 |
commit | 409cc138f2de121288de3ffb930354b94af5edcd (patch) | |
tree | 31b10a63931ce99eb97dda40b286defc3b140606 /src/nvim/os/input.c | |
parent | e731a5edf879cd0b5eb2a2035f78e2b44fbe75f5 (diff) | |
download | rneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.gz rneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.bz2 rneovim-409cc138f2de121288de3ffb930354b94af5edcd.zip |
Introduce nvim namespace: Fix project-local includes.
Prepend 'nvim/' in all project-local (non-system) includes.
Diffstat (limited to 'src/nvim/os/input.c')
-rw-r--r-- | src/nvim/os/input.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/nvim/os/input.c b/src/nvim/os/input.c index 4310edd514..a673a6c8b8 100644 --- a/src/nvim/os/input.c +++ b/src/nvim/os/input.c @@ -4,15 +4,15 @@ #include <uv.h> -#include "os/input.h" -#include "os/event.h" -#include "os/rstream_defs.h" -#include "os/rstream.h" -#include "vim.h" -#include "ui.h" -#include "fileio.h" -#include "getchar.h" -#include "term.h" +#include "nvim/os/input.h" +#include "nvim/os/event.h" +#include "nvim/os/rstream_defs.h" +#include "nvim/os/rstream.h" +#include "nvim/vim.h" +#include "nvim/ui.h" +#include "nvim/fileio.h" +#include "nvim/getchar.h" +#include "nvim/term.h" #define READ_BUFFER_SIZE 256 |