Searched refs:optval (Results 1 – 5 of 5) sorted by relevance
| /vim-8.2.3635/src/proto/ |
| H A D | option.pro | 81 int option_set_callback_func(char_u *optval, callback_T *optcb);
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | if_mzsch.txt | 185 setting form (like optname=optval, or 186 optname+=optval, etc.) When called with
|
| H A D | usr_41.txt | 542 :let optval = eval('&' .. optname) 547 :exe 'let optval = &' .. optname
|
| /vim-8.2.3635/src/ |
| H A D | option.c | 7200 option_set_callback_func(char_u *optval UNUSED, callback_T *optcb UNUSED) in option_set_callback_func() 7206 if (optval == NULL || *optval == NUL) in option_set_callback_func() 7212 if (*optval == '{' in option_set_callback_func() 7213 || (STRNCMP(optval, "function(", 9) == 0) in option_set_callback_func() 7214 || (STRNCMP(optval, "funcref(", 8) == 0)) in option_set_callback_func() 7216 tv = eval_expr(optval, NULL); in option_set_callback_func() 7219 tv = alloc_string_tv(vim_strsave(optval)); in option_set_callback_func()
|
| H A D | vim9execute.c | 2212 typval_T optval; in exec_instructions() local 2219 if (eval_option(&name, &optval, TRUE) == FAIL) in exec_instructions() 2221 *STACK_TV_BOT(0) = optval; in exec_instructions() 2229 typval_T optval; in exec_instructions() local 2235 (void)eval_env_var(&name, &optval, TRUE); in exec_instructions() 2236 *STACK_TV_BOT(0) = optval; in exec_instructions()
|