diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-15 20:01:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-15 20:01:17 +0200 |
commit | 717560d221222012d4ff9698141a0d0703eb33cc (patch) | |
tree | c97c5eba0268f57de8985841bef78e9a89807c6d /test/functional/api/window_spec.lua | |
parent | a098e304b0de28f987c8e142f02b5c12218be97d (diff) | |
parent | bbf58e6bbcc107e92d84730a33bd5a32440f5428 (diff) | |
download | rneovim-717560d221222012d4ff9698141a0d0703eb33cc.tar.gz rneovim-717560d221222012d4ff9698141a0d0703eb33cc.tar.bz2 rneovim-717560d221222012d4ff9698141a0d0703eb33cc.zip |
Merge pull request #18581 from famiu/refactor/ui/vertsplit
refactor(ui)!: link `VertSplit` to `Normal` by default
Diffstat (limited to 'test/functional/api/window_spec.lua')
-rw-r--r-- | test/functional/api/window_spec.lua | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/functional/api/window_spec.lua b/test/functional/api/window_spec.lua index c31ab2060a..9aacac37bf 100644 --- a/test/functional/api/window_spec.lua +++ b/test/functional/api/window_spec.lua @@ -166,23 +166,23 @@ describe('API/win', function() local oldwin = curwin() command('vsplit') screen:expect([[ - aaa {4:│}aaa | - bbb {4:│}bbb | - ccc {4:│}ccc | - {2:dd^d }{4:│}{2:ddd }| - {1:~ }{4:│}{1:~ }| - {1:~ }{4:│}{1:~ }| + aaa │aaa | + bbb │bbb | + ccc │ccc | + {2:dd^d }│{2:ddd }| + {1:~ }│{1:~ }| + {1:~ }│{1:~ }| {3:[No Name] [+] 4,3 All }{4:[No Name] [+] 4,3 All}| | ]]) window('set_cursor', oldwin, {1, 0}) screen:expect([[ - aaa {4:│}{2:aaa }| - bbb {4:│}bbb | - ccc {4:│}ccc | - {2:dd^d }{4:│}ddd | - {1:~ }{4:│}{1:~ }| - {1:~ }{4:│}{1:~ }| + aaa │{2:aaa }| + bbb │bbb | + ccc │ccc | + {2:dd^d }│ddd | + {1:~ }│{1:~ }| + {1:~ }│{1:~ }| {3:[No Name] [+] 4,3 All }{4:[No Name] [+] 1,1 All}| | ]]) |