diff options
author | dedmass <carlo.abelli@gmail.com> | 2017-04-06 09:12:59 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-08 04:16:29 +0200 |
commit | 3d4a2ee9c72e772113e69c9928fbc58e9dc4b09b (patch) | |
tree | 2d68d2e7c02e024049357a7f5e18f5639422b724 | |
parent | f4e97fe49988b834fea8d8b7a62de0938325395a (diff) | |
download | rneovim-3d4a2ee9c72e772113e69c9928fbc58e9dc4b09b.tar.gz rneovim-3d4a2ee9c72e772113e69c9928fbc58e9dc4b09b.tar.bz2 rneovim-3d4a2ee9c72e772113e69c9928fbc58e9dc4b09b.zip |
refactor/single-include: ex_cmds.h #6453
-rw-r--r-- | src/nvim/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/nvim/ex_cmds.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 5524c4d87d..843bff3655 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 - ex_cmds.h ex_getln.h file_search.h fold.h diff --git a/src/nvim/ex_cmds.h b/src/nvim/ex_cmds.h index 65bbd8a99e..792e2f772f 100644 --- a/src/nvim/ex_cmds.h +++ b/src/nvim/ex_cmds.h @@ -6,6 +6,8 @@ #include "nvim/os/time.h" #include "nvim/pos.h" #include "nvim/eval/typval.h" +#include "nvim/buffer_defs.h" // for buf_T and win_T +#include "nvim/ex_cmds_defs.h" // for exarg_T // flags for do_ecmd() #define ECMD_HIDE 0x01 // don't free the current buffer |