int error = FALSE;
if (varp->v_type == VAR_BOOL)
+ {
numval = (long)varp->vval.v_number;
- else if (!in_vim9script() || varp->v_type != VAR_STRING)
- numval = (long)tv_get_number_chk(varp, &error);
- strval = tv_get_string_buf_chk(varp, nbuf);
+ strval = (char_u *)"0"; // avoid using "false"
+ }
+ else
+ {
+ if (!in_vim9script() || varp->v_type != VAR_STRING)
+ numval = (long)tv_get_number_chk(varp, &error);
+ strval = tv_get_string_buf_chk(varp, nbuf);
+ }
if (!error && strval != NULL)
set_option_value(varname, numval, strval, OPT_LOCAL);
}
settabwinvar(1, 1, '&ts', 15)
&ts->assert_equal(15)
setlocal ts=8
+ settabwinvar(1, 1, '&list', false)
+ &list->assert_equal(false)
settabwinvar(1, 1, '&list', true)
&list->assert_equal(true)
setlocal list&