aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/options_spec.lua
diff options
context:
space:
mode:
authorGregory Anders <greg@gpanders.com>2023-11-07 11:31:21 -0600
committerGregory Anders <greg@gpanders.com>2023-11-13 19:04:47 -0600
commit8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe (patch)
tree5872a66135c1250a32da15b981bb36118e58d347 /test/functional/ui/options_spec.lua
parentab102f188e86bdbfce1d4de2ef633092a906e8fe (diff)
downloadrneovim-8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe.tar.gz
rneovim-8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe.tar.bz2
rneovim-8d9789a0f3b748b75ac4ae1b8e43d27af40d49fe.zip
docs: deprecate the "term_background" UI field
Diffstat (limited to 'test/functional/ui/options_spec.lua')
-rw-r--r--test/functional/ui/options_spec.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/functional/ui/options_spec.lua b/test/functional/ui/options_spec.lua
index f3817856f7..6af1820430 100644
--- a/test/functional/ui/options_spec.lua
+++ b/test/functional/ui/options_spec.lua
@@ -210,22 +210,6 @@ describe('UI can set terminal option', function()
screen = Screen.new(20,5)
end)
- it('term_background', function()
- eq('dark', eval '&background')
-
- screen:attach {term_background='light'}
- eq('light', eval '&background')
- end)
-
- it("term_background but not if 'background' already set by user", function()
- eq('dark', eval '&background')
- command 'set background=dark'
-
- screen:attach {term_background='light'}
-
- eq('dark', eval '&background')
- end)
-
it('term_name', function()
eq('nvim', eval '&term')