aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.h
diff options
context:
space:
mode:
authorNicolas Hillegeer <nicolas@hillegeer.com>2014-07-06 17:27:09 +0200
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-16 19:05:34 +0200
commite288ddaee7d9c186c5829178691dbfac507d757d (patch)
treed5dc40d56100d1a6d8615848ab226d97e4b9c7d2 /src/nvim/buffer.h
parentfb72f1ee37872137c19297268e3cc2a05f27c357 (diff)
downloadrneovim-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/buffer.h')
-rw-r--r--src/nvim/buffer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/buffer.h b/src/nvim/buffer.h
index 9690d58e0b..493ebffc63 100644
--- a/src/nvim/buffer.h
+++ b/src/nvim/buffer.h
@@ -1,6 +1,8 @@
#ifndef NVIM_BUFFER_H
#define NVIM_BUFFER_H
+#include "nvim/pos.h" // for linenr_T
+
/* Values for buflist_getfile() */
#define GETF_SETMARK 0x01 /* set pcmark before jumping */
#define GETF_ALT 0x02 /* jumping to alternate file (not buf num) */