diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-06 17:27:09 +0200 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-16 19:05:34 +0200 |
commit | e288ddaee7d9c186c5829178691dbfac507d757d (patch) | |
tree | d5dc40d56100d1a6d8615848ab226d97e4b9c7d2 /src/nvim/ex_eval.h | |
parent | fb72f1ee37872137c19297268e3cc2a05f27c357 (diff) | |
download | rneovim-e288ddaee7d9c186c5829178691dbfac507d757d.tar.gz rneovim-e288ddaee7d9c186c5829178691dbfac507d757d.tar.bz2 rneovim-e288ddaee7d9c186c5829178691dbfac507d757d.zip |
vim: move linenr_T and colnr_T to pos.h
Try to cut down vim.h's size. It's keeping us from testing more things.
Diffstat (limited to 'src/nvim/ex_eval.h')
-rw-r--r-- | src/nvim/ex_eval.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/ex_eval.h b/src/nvim/ex_eval.h index 7523aff792..3f5e295c18 100644 --- a/src/nvim/ex_eval.h +++ b/src/nvim/ex_eval.h @@ -1,6 +1,8 @@ #ifndef NVIM_EX_EVAL_H #define NVIM_EX_EVAL_H +#include "nvim/pos.h" // for linenr_T + /* * A list used for saving values of "emsg_silent". Used by ex_try() to save the * value of "emsg_silent" if it was non-zero. When this is done, the CSF_SILENT |