1
0
forked from aniani/vim

patch 8.2.4950: text properties position wrong after shifting text

Problem:    Text properties position wrong after shifting text.
Solution:   Adjust the text properties when shifting a block of text.
            (closes #10418)
This commit is contained in:
LemonBoy
2022-05-13 21:56:28 +01:00
committed by Bram Moolenaar
parent 31ad32a325
commit 4b93674159
3 changed files with 49 additions and 20 deletions

View File

@@ -1933,5 +1933,29 @@ func Test_prop_spell()
bwipe!
endfunc
func Test_prop_shift_block()
new
call AddPropTypes()
call setline(1, ['some highlighted text']->repeat(2))
call prop_add(1, 10, #{type: 'one', length: 11})
call prop_add(2, 10, #{type: 'two', length: 11})
call cursor(1, 1)
call feedkeys("5l\<c-v>>", 'nxt')
call cursor(2, 1)
call feedkeys("5l\<c-v><", 'nxt')
let expected = [
\ {'lnum': 1, 'id': 0, 'col': 8, 'type_bufnr': 0, 'end': 1, 'type': 'one',
\ 'length': 11, 'start' : 1},
\ {'lnum': 2, 'id': 0, 'col': 6, 'type_bufnr': 0, 'end': 1, 'type': 'two',
\ 'length': 11, 'start' : 1}
\ ]
call assert_equal(expected, prop_list(1, #{end_lnum: 2}))
call DeletePropTypes()
bwipe!
endfunc
" vim: shiftwidth=2 sts=2 expandtab