1
0
forked from aniani/vim

patch 8.2.4955: text property in wrong position after auto-indent

Problem:    Text property in wrong position after auto-indent.
Solution:   Adjust text property columns. (closes #10422, closes #7719)
This commit is contained in:
LemonBoy
2022-05-14 18:48:05 +01:00
committed by Bram Moolenaar
parent 698cb4c8fa
commit 788c06a249
3 changed files with 24 additions and 3 deletions

View File

@@ -635,6 +635,18 @@ func Test_prop_open_line()
call assert_equal(expected, prop_list(2))
call DeletePropTypes()
" split at the space character with 'ai' active, the leading space is removed
" in the second line and the prop is shifted accordingly.
let expected = SetupOneLine() " 'xonex xtwoxx'
set ai
exe "normal 6|i\<CR>\<Esc>"
call assert_equal('xonex', getline(1))
call assert_equal('xtwoxx', getline(2))
let expected[1].col -= 6
call assert_equal(expected, prop_list(1) + prop_list(2))
set ai&
call DeletePropTypes()
bwipe!
set bs&
endfunc