diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-11-05 19:57:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 19:57:15 +0800 |
commit | 43681f237551dfebb64c44f60eb13459b82ea2ed (patch) | |
tree | ab9303393cb6190fb82e93893620e8ed56bed052 /test | |
parent | da90be23088a3a0b8a517d66d446bdfef32e2872 (diff) | |
parent | e0ec83a9701ffd9b30a41763ad2e2326d85d8480 (diff) | |
download | rneovim-43681f237551dfebb64c44f60eb13459b82ea2ed.tar.gz rneovim-43681f237551dfebb64c44f60eb13459b82ea2ed.tar.bz2 rneovim-43681f237551dfebb64c44f60eb13459b82ea2ed.zip |
Merge pull request #17950 from zeertzjq/vim-8.2.4029
vim-patch:8.2.{4029,4093,4100,4501,4882}: breakindent patches
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/legacy/breakindent_spec.lua | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/test/functional/legacy/breakindent_spec.lua b/test/functional/legacy/breakindent_spec.lua new file mode 100644 index 0000000000..d7779684a4 --- /dev/null +++ b/test/functional/legacy/breakindent_spec.lua @@ -0,0 +1,44 @@ +local helpers = require('test.functional.helpers')(after_each) +local Screen = require('test.functional.ui.screen') +local clear = helpers.clear +local exec = helpers.exec +local feed = helpers.feed + +before_each(clear) + +describe('breakindent', function() + -- oldtest: Test_cursor_position_with_showbreak() + it('cursor shown at correct position with showbreak', function() + local screen = Screen.new(75, 6) + screen:set_default_attr_ids({ + [0] = {bold = true, foreground = Screen.colors.Blue}, -- NonText + [1] = {background = Screen.colors.Grey, foreground = Screen.colors.DarkBlue}, -- SignColumn + [2] = {bold = true}, -- ModeMsg + }) + screen:attach() + exec([[ + let &signcolumn = 'yes' + let &showbreak = '+' + let leftcol = win_getid()->getwininfo()->get(0, {})->get('textoff') + eval repeat('x', &columns - leftcol - 1)->setline(1) + eval 'second line'->setline(2) + ]]) + screen:expect([[ + {1: }^xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | + {1: }second line | + {0:~ }| + {0:~ }| + {0:~ }| + | + ]]) + feed('AX') + screen:expect([[ + {1: }xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxX| + {1: }^second line | + {0:~ }| + {0:~ }| + {0:~ }| + {2:-- INSERT --} | + ]]) + end) +end) |