aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-09-11 04:01:41 +0200
committerJustin M. Keyes <justinkz@gmail.com>2016-09-13 16:20:09 +0200
commitdf072c3b2b20fb7d3d9d50b5ab0df92827aa628f (patch)
treefb80cb1409d60a6316d534b989451cd9986934e6 /src/nvim/getchar.c
parent7eb4d2f79dcc712dae1513516b9db5f574d51437 (diff)
downloadrneovim-df072c3b2b20fb7d3d9d50b5ab0df92827aa628f.tar.gz
rneovim-df072c3b2b20fb7d3d9d50b5ab0df92827aa628f.tar.bz2
rneovim-df072c3b2b20fb7d3d9d50b5ab0df92827aa628f.zip
refactor: eliminate misc2.c
move `call_shell` to misc1.c Move some fns to state.c Move some fns to option.c Move some fns to memline.c Move `vim_chdir*` fns to file_search.c Move some fns to new module, bytes.c Move some fns to fileio.c
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r--src/nvim/getchar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c
index ae1857f318..dad0ac33cd 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -29,7 +29,6 @@
#include "nvim/memory.h"
#include "nvim/message.h"
#include "nvim/misc1.h"
-#include "nvim/misc2.h"
#include "nvim/keymap.h"
#include "nvim/garray.h"
#include "nvim/move.h"
@@ -38,6 +37,7 @@
#include "nvim/option.h"
#include "nvim/regexp.h"
#include "nvim/screen.h"
+#include "nvim/state.h"
#include "nvim/strings.h"
#include "nvim/ui.h"
#include "nvim/undo.h"