diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-03-11 17:26:22 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-03-12 12:39:20 +0100 |
commit | 82117da5df93666798b94e4e6e47e11dcb1b4dcd (patch) | |
tree | 94456ff61f62b20cb9c16bc7f111905272782134 /src/nvim/buffer_defs.h | |
parent | c8f0f8fea6e3170db0d68d61dd84f3c3ef9ee77c (diff) | |
download | rneovim-82117da5df93666798b94e4e6e47e11dcb1b4dcd.tar.gz rneovim-82117da5df93666798b94e4e6e47e11dcb1b4dcd.tar.bz2 rneovim-82117da5df93666798b94e4e6e47e11dcb1b4dcd.zip |
tabpage_S: Name tp_localdir per convention.
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index a1b5633c32..3e9767adde 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -825,8 +825,7 @@ struct tabpage_S { 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 + char_u *tp_localdir; ///< Absolute path of local CWD or NULL }; /* |