diff options
author | Famiu Haque <famiuhaque@protonmail.com> | 2022-05-15 22:34:44 +0600 |
---|---|---|
committer | Famiu Haque <famiuhaque@protonmail.com> | 2022-05-15 22:37:35 +0600 |
commit | bbf58e6bbcc107e92d84730a33bd5a32440f5428 (patch) | |
tree | da8c7ccfa6be8ebd144141525c8146dca586746b /test/functional/ui/float_spec.lua | |
parent | 793496aecc23fdee93040fc94ca3e1a66da73039 (diff) | |
download | rneovim-bbf58e6bbcc107e92d84730a33bd5a32440f5428.tar.gz rneovim-bbf58e6bbcc107e92d84730a33bd5a32440f5428.tar.bz2 rneovim-bbf58e6bbcc107e92d84730a33bd5a32440f5428.zip |
refactor(ui)!: link `VertSplit` to `Normal` by default
Avoids using `gui=reverse` on `VertSplit` and makes window separators
look much nicer by default.
Diffstat (limited to 'test/functional/ui/float_spec.lua')
-rw-r--r-- | test/functional/ui/float_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/ui/float_spec.lua b/test/functional/ui/float_spec.lua index 96e7b1b6bc..7ab00e74d9 100644 --- a/test/functional/ui/float_spec.lua +++ b/test/functional/ui/float_spec.lua @@ -22,6 +22,7 @@ local curbuf, curwin, curtab = helpers.curbuf, helpers.curwin, helpers.curtab describe('float window', function() before_each(function() clear() + command('hi VertSplit gui=reverse') end) local attrs = { [0] = {bold=true, foreground=Screen.colors.Blue}, |