Lines Matching refs:opt
392 for opt in bopts
394 pyopt = vim.bindeval("opt")
398 exe "call assert_equal(opt[2], &" .. opt[0] .. ")"
399 exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
400 exe "call assert_equal(opt[2], &l:" .. opt[0] .. ")"
402 exe "call assert_equal(opt[1], &" .. opt[0] .. ")"
403 exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
404 exe "call assert_equal(opt[3], &l:" .. opt[0] .. ")"
405 exe "set " .. opt[0] .. "&"
414 for opt in wopts
416 pyopt = vim.bindeval("opt")
420 exe "call assert_equal(opt[2], &" .. opt[0] .. ")"
421 exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
422 exe "call assert_equal(opt[2], &l:" .. opt[0] .. ")"
424 exe "call assert_equal(opt[1], &" .. opt[0] .. ")"
425 exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
426 exe "call assert_equal(opt[3], &l:" .. opt[0] .. ")"
427 exe "set " .. opt[0] .. "&"
1179 func RecVars(opt) argument
1180 let gval = string(eval('&g:' .. a:opt))
1182 \ 'v:val .. ":" .. string(getwinvar(v:val, "&" .. a:opt))'))
1184 \ 'v:val .. ":" .. string(getbufvar(v:val, "&" .. a:opt))'))