aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.h
diff options
context:
space:
mode:
authordedmass <carlo.abelli@gmail.com>2017-04-06 17:06:35 -0400
committerJustin M. Keyes <justinkz@gmail.com>2017-04-08 18:26:33 +0200
commitcd0a436622d0eeafcbc79e0a6e53088b881ab5b1 (patch)
treea5db79c166d86e8d42bd49becd2391ba9a375fb6 /src/nvim/ops.h
parent3fd9b70c485c55adb95848aa0e2c67bfb3db786a (diff)
downloadrneovim-cd0a436622d0eeafcbc79e0a6e53088b881ab5b1.tar.gz
rneovim-cd0a436622d0eeafcbc79e0a6e53088b881ab5b1.tar.bz2
rneovim-cd0a436622d0eeafcbc79e0a6e53088b881ab5b1.zip
refactor/single-include
Closes #6463 refactor/single-include: file_search.h Closes #6455 refactor/single-include: hardcopy.h Closes #6457 refactor/single-include: if_cscope.h Closes #6458 refactor/single-include: mark.h Closes #6461 refactor/single-include: mbyte.h Closes #6462 refactor/single-include: memline.h Closes #6464 refactor/single-include: menu.h Closes #6468 refactor/single-include: ops.h Closes #6470
Diffstat (limited to 'src/nvim/ops.h')
-rw-r--r--src/nvim/ops.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/ops.h b/src/nvim/ops.h
index 13d0142343..a8867e02ea 100644
--- a/src/nvim/ops.h
+++ b/src/nvim/ops.h
@@ -8,6 +8,8 @@
#include "nvim/types.h"
#include "nvim/eval/typval.h"
#include "nvim/os/time.h"
+#include "nvim/normal.h" // for MotionType and oparg_T
+#include "nvim/ex_cmds_defs.h" // for exarg_T
typedef int (*Indenter)(void);