aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-04-21 03:15:52 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-04-21 03:15:52 -0400
commit5ebffaae4e6c08630b705b5994a509a08cbecce6 (patch)
treef73be82fddf61e925c09f6ba906751961bdb2824 /src/nvim/buffer_defs.h
parentcef624ee9e14bf15598219d96f65a6e4932eb935 (diff)
parent89e6973fe2b57316817877f64f0be5ebc5a25b7f (diff)
downloadrneovim-5ebffaae4e6c08630b705b5994a509a08cbecce6.tar.gz
rneovim-5ebffaae4e6c08630b705b5994a509a08cbecce6.tar.bz2
rneovim-5ebffaae4e6c08630b705b5994a509a08cbecce6.zip
Merge #3229 ':tcd'
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r--src/nvim/buffer_defs.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h
index 86e63eb52c..ecd13d5ee0 100644
--- a/src/nvim/buffer_defs.h
+++ b/src/nvim/buffer_defs.h
@@ -816,10 +816,12 @@ struct tabpage_S {
was set */
diff_T *tp_first_diff;
buf_T *(tp_diffbuf[DB_COUNT]);
- int tp_diff_invalid; /* list of diffs is outdated */
- frame_T *(tp_snapshot[SNAP_COUNT]); /* window layout snapshots */
- dictitem_T tp_winvar; /* variable for "t:" Dictionary */
- dict_T *tp_vars; /* internal variables, local to tab page */
+ int tp_diff_invalid; ///< list of diffs is outdated */
+ frame_T *(tp_snapshot[SNAP_COUNT]); ///< window layout snapshots
+ dictitem_T tp_winvar; ///< variable for "t:" Dictionary
+ dict_T *tp_vars; ///< internal variables, local to tab page
+ char_u *localdir; ///< Absolute path of local directory or
+ ///< NULL
};
/*