1
0
forked from aniani/vim

patch 9.0.0677: breakindent test accepts wrong result

Problem:    Breakindent test accepts wrong result.
Solution:   Fix the number column and adjust the expected text.
This commit is contained in:
Bram Moolenaar
2022-10-06 19:21:20 +01:00
parent d459020c62
commit 06618f94f1
3 changed files with 18 additions and 19 deletions

View File

@@ -343,9 +343,8 @@ handle_lnum_col(
int num_attr UNUSED) int num_attr UNUSED)
{ {
if ((wp->w_p_nu || wp->w_p_rnu) if ((wp->w_p_nu || wp->w_p_rnu)
&& ((wlv->row == wlv->startrow + wlv->filler_lines && (wlv->row == wlv->startrow + wlv->filler_lines
&& (wp->w_skipcol == 0 || wlv->row > wp->w_winrow)) || vim_strchr(p_cpo, CPO_NUMCOL) == NULL))
|| vim_strchr(p_cpo, CPO_NUMCOL) == NULL))
{ {
#ifdef FEAT_SIGNS #ifdef FEAT_SIGNS
// If 'signcolumn' is set to 'number' and a sign is present // If 'signcolumn' is set to 'number' and a sign is present
@@ -363,7 +362,7 @@ handle_lnum_col(
#ifdef FEAT_PROP_POPUP #ifdef FEAT_PROP_POPUP
+ wlv->text_prop_above_count + wlv->text_prop_above_count
#endif #endif
) && (wp->w_skipcol == 0 || wlv->row > wp->w_winrow))
{ {
long num; long num;
char *fmt = "%*ld "; char *fmt = "%*ld ";

View File

@@ -671,14 +671,14 @@ endfunc
func Test_breakindent20_cpo_n_nextpage() func Test_breakindent20_cpo_n_nextpage()
let s:input = "" let s:input = ""
call s:test_windows('setl breakindent briopt=min:14 cpo+=n number') call s:test_windows('setl breakindent briopt=min:14 cpo+=n number')
call setline(1, repeat('a', 200)) call setline(1, repeat('abcdefghijklmnopqrst', 10))
norm! 1gg norm! 1gg
redraw! redraw!
let lines = s:screen_lines(1, 20) let lines = s:screen_lines(1, 20)
let expect = [ let expect = [
\ " 1 aaaaaaaaaaaaaaaa", \ " 1 abcdefghijklmnop",
\ " aaaaaaaaaaaaaaaa", \ " qrstabcdefghijkl",
\ " aaaaaaaaaaaaaaaa", \ " mnopqrstabcdefgh",
\ ] \ ]
call s:compare_lines(expect, lines) call s:compare_lines(expect, lines)
" Scroll down one screen line " Scroll down one screen line
@@ -686,11 +686,10 @@ func Test_breakindent20_cpo_n_nextpage()
norm! 5gj norm! 5gj
redraw! redraw!
let lines = s:screen_lines(1, 20) let lines = s:screen_lines(1, 20)
" FIXME: this is not the right result
let expect = [ let expect = [
\ "<<<aaaaaaaaaaaaaaaaa", \ "<<< qrstabcdefghijkl",
\ " aaaaaaaaaaaaaaaa", \ " mnopqrstabcdefgh",
\ " aaaaaaaaaaaaaaaa", \ " ijklmnopqrstabcd",
\ ] \ ]
call s:compare_lines(expect, lines) call s:compare_lines(expect, lines)
@@ -698,19 +697,18 @@ func Test_breakindent20_cpo_n_nextpage()
norm! 1gg norm! 1gg
let lines = s:screen_lines(1, 20) let lines = s:screen_lines(1, 20)
let expect = [ let expect = [
\ " 1 aaaaaaaaaaaaaaaa", \ " 1 abcdefghijklmnop",
\ " aaaaaaaaaaaaaa", \ " qrstabcdefghij",
\ " aaaaaaaaaaaaaa", \ " klmnopqrstabcd",
\ ] \ ]
call s:compare_lines(expect, lines) call s:compare_lines(expect, lines)
" Scroll down one screen line " Scroll down one screen line
norm! 5gj norm! 5gj
let lines = s:screen_lines(1, 20) let lines = s:screen_lines(1, 20)
" FIXME: this is not the right result
let expect = [ let expect = [
\ "<<<aaaaaaaaaaaaaaaaa", \ "<<< qrstabcdefghij",
\ " aaaaaaaaaaaaaa", \ " klmnopqrstabcd",
\ " aaaaaaaaaaaaaa", \ " efghijklmnopqr",
\ ] \ ]
call s:compare_lines(expect, lines) call s:compare_lines(expect, lines)

View File

@@ -699,6 +699,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
677,
/**/ /**/
676, 676,
/**/ /**/