Home
last modified time | relevance | path

Searched refs:tp_vars (Results 1 – 7 of 7) sorted by relevance

/vim-8.2.3635/src/
H A Dwindow.c3857 tp->tp_vars = dict_alloc(); in alloc_tabpage()
3858 if (tp->tp_vars == NULL) in alloc_tabpage()
3863 init_var_dict(tp->tp_vars, &tp->tp_winvar, VAR_SCOPE); in alloc_tabpage()
3893 vars_clear(&tp->tp_vars->dv_hashtab); // free all t: variables in free_tabpage()
3894 hash_init(&tp->tp_vars->dv_hashtab); in free_tabpage()
3895 unref_var_dict(tp->tp_vars); in free_tabpage()
H A Devalvars.c1180 list_hashtable_vars(&curtab->tp_vars->dv_hashtab, "t:", TRUE, first); in list_tab_vars()
2110 ht = &curtab->tp_vars->dv_hashtab; in get_user_var_name()
2980 return &curtab->tp_vars->dv_hashtab; in find_var_ht()
4087 v = find_var_in_ht(&tp->tp_vars->dv_hashtab, 't', varname, FALSE); in f_gettabvar()
H A Devalwindow.c454 dict_add_dict(dict, "variables", tp->tp_vars); in get_tabpage_info()
H A Dvim9execute.c2141 ht = &curtab->tp_vars->dv_hashtab; in exec_instructions()
2194 case ISN_LOADTDICT: d = curtab->tp_vars; break; in exec_instructions()
2394 ht = &curtab->tp_vars->dv_hashtab; in exec_instructions()
H A Dstructs.h3233 dict_T *tp_vars; // internal variables, local to tab page member
H A Dif_lua.c1799 dict = curtab->tp_vars; in luaV_get_var_scope()
H A Dif_py_both.h3777 return NEW_DICTIONARY(self->tab->tp_vars); in TabPageAttr()