aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordedmass <carlo.abelli@gmail.com>2017-04-04 20:53:26 -0400
committerJustin M. Keyes <justinkz@gmail.com>2017-04-08 04:14:05 +0200
commitf4e97fe49988b834fea8d8b7a62de0938325395a (patch)
treecbc054ab30820e0e69f3012e8c9bfa74780cf3d8
parentfd8f18bce25e6dcc66dec1fa4870a7ca5c106dec (diff)
downloadrneovim-f4e97fe49988b834fea8d8b7a62de0938325395a.tar.gz
rneovim-f4e97fe49988b834fea8d8b7a62de0938325395a.tar.bz2
rneovim-f4e97fe49988b834fea8d8b7a62de0938325395a.zip
refactor/single-include: digraph.h #6444
-rw-r--r--src/nvim/CMakeLists.txt1
-rw-r--r--src/nvim/digraph.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt
index db3b406b4a..5524c4d87d 100644
--- a/src/nvim/CMakeLists.txt
+++ b/src/nvim/CMakeLists.txt
@@ -424,7 +424,6 @@ function(get_test_target prefix sfile relative_path_var target_var)
endfunction()
set(NO_SINGLE_CHECK_HEADERS
- digraph.h
ex_cmds.h
ex_getln.h
file_search.h
diff --git a/src/nvim/digraph.h b/src/nvim/digraph.h
index b623969e08..d0f10eaf78 100644
--- a/src/nvim/digraph.h
+++ b/src/nvim/digraph.h
@@ -1,6 +1,9 @@
#ifndef NVIM_DIGRAPH_H
#define NVIM_DIGRAPH_H
+#include "nvim/types.h" // for char_u
+#include "nvim/ex_cmds_defs.h" // for exarg_T
+
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "digraph.h.generated.h"
#endif