Home
last modified time | relevance | path

Searched refs:typestr (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/runtime/autoload/
H A Dpython3complete.vim230 typestr = str(inst)
235 if "function" in typestr:
238 elif "method" in typestr:
241 elif "module" in typestr:
243 elif "type" in typestr:
H A Dpythoncomplete.vim248 typestr = str(inst)
253 if "function" in typestr:
256 elif "method" in typestr:
259 elif "module" in typestr:
261 elif "class" in typestr:
/vim-8.2.3635/src/
H A Dex_getln.c69 char_u typestr[2]; in trigger_cmd_autocmd() local
71 typestr[0] = typechar; in trigger_cmd_autocmd()
72 typestr[1] = NUL; in trigger_cmd_autocmd()
73 apply_autocmds(evt, typestr, typestr, FALSE, curbuf); in trigger_cmd_autocmd()
H A Devalfunc.c2958 char_u *typestr; in f_confirm() local
2983 typestr = tv_get_string_buf_chk(&argvars[3], buf2); in f_confirm()
2984 if (typestr == NULL) in f_confirm()
2988 switch (TOUPPER_ASC(*typestr)) in f_confirm()