0
0
mirror of https://github.com/vim/vim.git synced 2025-10-05 05:34:07 -04:00

patch 8.2.2177: pattern "^" does not match if first character is combining

Problem:    Pattern "^" does not match if the first character in the line is
            combining. (Rene Kita)
Solution:   Do accept a match at the start of the line. (closes #6963)
This commit is contained in:
Bram Moolenaar
2020-12-21 14:54:32 +01:00
parent 6a78f32844
commit ef2dff52de
3 changed files with 18 additions and 3 deletions

View File

@@ -501,4 +501,15 @@ func Test_search_with_end_offset()
close!
endfunc
" Check that "^" matches even when the line starts with a combining char
func Test_match_start_of_line_combining()
new
call setline(1, ['', "\u05ae", ''])
exe "normal gg/^\<CR>"
call assert_equal(2, getcurpos()[1])
bwipe!
endfunc
" vim: shiftwidth=2 sts=2 expandtab