aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds2.c
diff options
context:
space:
mode:
authorNicolas Hillegeer <nicolas@hillegeer.com>2014-07-09 00:20:38 +0200
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-09 00:20:38 +0200
commitef70d7ccf71c5d0b00f02be9a9aee879f26e8355 (patch)
tree28fd8cb3a8625c35960e6a8fb474962b15c3f611 /src/nvim/ex_cmds2.c
parenta568e8b644a41b12388b7c7de4ca0fb8dc107f18 (diff)
parent0fff487690803be45b185ca165e12b470fa0466e (diff)
downloadrneovim-ef70d7ccf71c5d0b00f02be9a9aee879f26e8355.tar.gz
rneovim-ef70d7ccf71c5d0b00f02be9a9aee879f26e8355.tar.bz2
rneovim-ef70d7ccf71c5d0b00f02be9a9aee879f26e8355.zip
Merge #921 'Remove includes vim.h'
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r--src/nvim/ex_cmds2.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c
index 7a34aba6b9..e3024f6fb0 100644
--- a/src/nvim/ex_cmds2.c
+++ b/src/nvim/ex_cmds2.c
@@ -10,9 +10,16 @@
* ex_cmds2.c: some more functions for command line commands
*/
+#include <errno.h>
+#include <inttypes.h>
+#include <stdbool.h>
#include <string.h>
#include "nvim/vim.h"
+#include "nvim/ascii.h"
+#ifdef HAVE_LOCALE_H
+# include <locale.h>
+#endif
#include "nvim/version_defs.h"
#include "nvim/ex_cmds2.h"
#include "nvim/buffer.h"