docs: deprecate the "term_background" UI field

This commit is contained in:
Gregory Anders
2023-11-07 11:31:21 -06:00
parent ab102f188e
commit 8d9789a0f3
10 changed files with 13 additions and 30 deletions

View File

@@ -36,8 +36,6 @@ describe('nvim_ui_attach()', function()
pcall_err(meths.ui_attach, 80, 24, { term_name=true }))
eq("Invalid 'term_colors': expected Integer, got Boolean",
pcall_err(meths.ui_attach, 80, 24, { term_colors=true }))
eq("Invalid 'term_background': expected String, got Boolean",
pcall_err(meths.ui_attach, 80, 24, { term_background=true }))
eq("Invalid 'stdin_fd': expected Integer, got String",
pcall_err(meths.ui_attach, 80, 24, { stdin_fd='foo' }))
eq("Invalid 'stdin_tty': expected Boolean, got String",