diff options
author | Gregory Anders <greg@gpanders.com> | 2023-11-07 11:31:21 -0600 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2023-11-13 19:04:47 -0600 |
commit | 8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe (patch) | |
tree | 5872a66135c1250a32da15b981bb36118e58d347 /test/functional/api/ui_spec.lua | |
parent | ab102f188e86bdbfce1d4de2ef633092a906e8fe (diff) | |
download | rneovim-8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe.tar.gz rneovim-8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe.tar.bz2 rneovim-8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe.zip |
docs: deprecate the "term_background" UI field
Diffstat (limited to 'test/functional/api/ui_spec.lua')
-rw-r--r-- | test/functional/api/ui_spec.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/functional/api/ui_spec.lua b/test/functional/api/ui_spec.lua index a668d47448..6efb6726fe 100644 --- a/test/functional/api/ui_spec.lua +++ b/test/functional/api/ui_spec.lua @@ -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", |