diff options
author | Samuel Catherasoo <sam111jc@gmail.com> | 2017-03-28 19:21:30 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-03-29 01:21:30 +0200 |
commit | b9e7ab1484784903b3233309a402138dc42e7e59 (patch) | |
tree | 9f9666da02445b285ce7ad23f603ad85c6a54f27 /src | |
parent | 6fbcbebae04af8e2f1b64f51049efbe49f771711 (diff) | |
download | rneovim-b9e7ab1484784903b3233309a402138dc42e7e59.tar.gz rneovim-b9e7ab1484784903b3233309a402138dc42e7e59.tar.bz2 rneovim-b9e7ab1484784903b3233309a402138dc42e7e59.zip |
refactor/single-include: charset.h (#6385)
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/nvim/charset.h | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 3ee4380538..e752f5d4df 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -400,7 +400,6 @@ set_property(TARGET nvim-test APPEND_STRING PROPERTY COMPILE_FLAGS -DUNIT_TESTIN set(NO_SINGLE_CHECK_HEADERS buffer - charset cursor_shape diff digraph diff --git a/src/nvim/charset.h b/src/nvim/charset.h index 78d6f2a76c..8d25b828e5 100644 --- a/src/nvim/charset.h +++ b/src/nvim/charset.h @@ -1,6 +1,10 @@ #ifndef NVIM_CHARSET_H #define NVIM_CHARSET_H +#include "nvim/types.h" +#include "nvim/pos.h" +#include "nvim/buffer_defs.h" + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "charset.h.generated.h" #endif |