diff options
Diffstat (limited to 'src/nvim/eval_defs.h')
-rw-r--r-- | src/nvim/eval_defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/eval_defs.h b/src/nvim/eval_defs.h index a33ac10e61..74d0782356 100644 --- a/src/nvim/eval_defs.h +++ b/src/nvim/eval_defs.h @@ -150,6 +150,8 @@ struct dictvar_S { struct partial_S { int pt_refcount; ///< Reference count. char_u *pt_name; ///< Function name. + bool pt_auto; ///< when true the partial was created for using + ///< dict.member in handle_subscript(). int pt_argc; ///< Number of arguments. typval_T *pt_argv; ///< Arguments in allocated array. dict_T *pt_dict; ///< Dict for "self". |