aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/float_spec.lua
diff options
context:
space:
mode:
authorglepnir <glephunter@gmail.com>2023-09-14 13:30:51 +0800
committerglepnir <glephunter@gmail.com>2023-09-18 18:21:14 +0800
commitfd08fd3de3020647c8ae73f1c7d2cf9a4926c828 (patch)
treed6ea15fe5c720985f146431cac3587ced8516ced /test/functional/ui/float_spec.lua
parenta6e74c1f0a2bbf03f5b99c167b549018f4c8fb0d (diff)
downloadrneovim-fd08fd3de3020647c8ae73f1c7d2cf9a4926c828.tar.gz
rneovim-fd08fd3de3020647c8ae73f1c7d2cf9a4926c828.tar.bz2
rneovim-fd08fd3de3020647c8ae73f1c7d2cf9a4926c828.zip
fix(float): add fixd option
Diffstat (limited to 'test/functional/ui/float_spec.lua')
-rw-r--r--test/functional/ui/float_spec.lua83
1 files changed, 83 insertions, 0 deletions
diff --git a/test/functional/ui/float_spec.lua b/test/functional/ui/float_spec.lua
index 4e2cee391a..4ede03f242 100644
--- a/test/functional/ui/float_spec.lua
+++ b/test/functional/ui/float_spec.lua
@@ -899,6 +899,89 @@ describe('float window', function()
end
end)
+ it('window position fixed', function()
+ local buf = meths.create_buf(false,false)
+ command("set nowrap")
+ local win = meths.open_win(buf, false, {
+ relative='editor', width=20, height=2, row=2, col=30, anchor = 'NW', fixed = true})
+ local expected_pos = {
+ [4]={{id=1001}, 'NW', 1, 2, 30, true},
+ }
+
+ if multigrid then
+ screen:expect{grid=[[
+ ## grid 1
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [3:----------------------------------------]|
+ ## grid 2
+ ^ |
+ {0:~ }|
+ {0:~ }|
+ {0:~ }|
+ {0:~ }|
+ {0:~ }|
+ ## grid 3
+ |
+ ## grid 4
+ {1: }|
+ {2:~ }|
+ ]], float_pos=expected_pos}
+ else
+ screen:expect([[
+ ^ |
+ {0:~ }|
+ {0:~ }{1: }|
+ {0:~ }{2:~ }|
+ {0:~ }|
+ {0:~ }|
+ |
+ ]])
+ end
+
+ meths.win_set_config(win, {
+ relative='editor', width=20, height=2, row=2, col=30, anchor = 'NW', fixed = false})
+
+ if multigrid then
+ screen:expect{grid=[[
+ ## grid 1
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [2:----------------------------------------]|
+ [3:----------------------------------------]|
+ ## grid 2
+ ^ |
+ {0:~ }|
+ {0:~ }|
+ {0:~ }|
+ {0:~ }|
+ {0:~ }|
+ ## grid 3
+ |
+ ## grid 4
+ {1: }|
+ {2:~ }|
+ ]], float_pos=expected_pos}
+ else
+ screen:expect([[
+ ^ |
+ {0:~ }|
+ {0:~ }{1: }|
+ {0:~ }{2:~ }|
+ {0:~ }|
+ {0:~ }|
+ |
+ ]])
+ end
+ end)
+
it('draws correctly with redrawdebug=compositor', function()
-- NB: we do not test that it produces the "correct" debug info
-- (as it is intermediate only, and is allowed to change by internal