diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-17 19:56:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-17 19:56:34 +0200 |
commit | 80e737cc6ab6b68948f6765348b6881be861b200 (patch) | |
tree | 695802f3be12c07911c64618e8bb8978367b1469 /src/testdir/test_textprop.vim | |
parent | bfd451283f8c37926f4b0aa22b74b534bd84e482 (diff) | |
download | vim-git-80e737cc6ab6b68948f6765348b6881be861b200.tar.gz |
patch 8.1.1341: text properties are lost when joining linesv8.1.1341
Problem: Text properties are lost when joining lines.
Solution: Move the text properties to the joined line.
Diffstat (limited to 'src/testdir/test_textprop.vim')
-rw-r--r-- | src/testdir/test_textprop.vim | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/testdir/test_textprop.vim b/src/testdir/test_textprop.vim index dc229c019..635902c7e 100644 --- a/src/testdir/test_textprop.vim +++ b/src/testdir/test_textprop.vim @@ -624,6 +624,10 @@ funct Test_textprop_screenshots() \ .. "'Numbér 123 änd thœn 4¾7.'," \ .. "'--aa--bb--cc--dd--'," \ .. "'// comment with error in it'," + \ .. "'first line'," + \ .. "' second line '," + \ .. "'third line'," + \ .. "' fourth line'," \ .. "])", \ "hi NumberProp ctermfg=blue", \ "hi LongProp ctermbg=yellow", @@ -645,6 +649,10 @@ funct Test_textprop_screenshots() \ "call prop_add(3, 15, {'length': 2, 'type': 'both'})", \ "call prop_add(4, 12, {'length': 10, 'type': 'background'})", \ "call prop_add(4, 17, {'length': 5, 'type': 'error'})", + \ "call prop_add(5, 7, {'length': 4, 'type': 'long'})", + \ "call prop_add(6, 1, {'length': 8, 'type': 'long'})", + \ "call prop_add(8, 1, {'length': 1, 'type': 'long'})", + \ "call prop_add(8, 11, {'length': 4, 'type': 'long'})", \ "set number cursorline", \ "hi clear SpellBad", \ "set spell", @@ -652,8 +660,11 @@ funct Test_textprop_screenshots() \ "hi Comment ctermfg=green", \ "normal 3G0llix\<Esc>lllix\<Esc>lllix\<Esc>lllix\<Esc>lllix\<Esc>lllix\<Esc>lllix\<Esc>lllix\<Esc>", \ "normal 3G0lli\<BS>\<Esc>", + \ "normal 6G0i\<BS>\<Esc>", + \ "normal 3J", + \ "normal 3G", \], 'XtestProp') - let buf = RunVimInTerminal('-S XtestProp', {'rows': 7}) + let buf = RunVimInTerminal('-S XtestProp', {'rows': 8}) call VerifyScreenDump(buf, 'Test_textprop_01', {}) " clean up |