aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authortimeyyy <timeyyy_da_man@hotmail.com>2017-01-18 13:20:07 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2019-11-11 19:43:15 +0100
commita9065a50518ef59351f9d0d32041a991a751653f (patch)
tree4448b4895b8977fcb09b8d87060cfa20fb8058b9 /src/nvim/buffer_defs.h
parente757f4d5363125e242f1e680d1f5bb53e8014b06 (diff)
downloadrneovim-a9065a50518ef59351f9d0d32041a991a751653f.tar.gz
rneovim-a9065a50518ef59351f9d0d32041a991a751653f.tar.bz2
rneovim-a9065a50518ef59351f9d0d32041a991a751653f.zip
nsmarks: initial commit
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r--src/nvim/buffer_defs.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h
index ca740dea21..2d65d0e160 100644
--- a/src/nvim/buffer_defs.h
+++ b/src/nvim/buffer_defs.h
@@ -115,6 +115,9 @@ typedef uint16_t disptick_T; // display tick type
#include "nvim/os/fs_defs.h" // for FileID
#include "nvim/terminal.h" // for Terminal
+#include "nvim/lib/kbtree.h"
+#include "nvim/mark_extended.h"
+
/*
* The taggy struct is used to store the information about a :tag command.
*/
@@ -805,6 +808,10 @@ struct file_buffer {
kvec_t(BufhlLine *) b_bufhl_move_space; // temporary space for highlights
+ PMap(uint64_t) *b_extmark_ns; // extmark namespaces
+ kbtree_t(extlines) b_extlines; // extmarks
+ kvec_t(ExtMarkLine *) b_extmark_move_space; // temp space for extmarks
+
// array of channel_id:s which have asked to receive updates for this
// buffer.
kvec_t(uint64_t) update_channels;