summaryrefslogtreecommitdiff
path: root/mnv/src/testdir/test_display.mnv
blob: 957e367b1a99005af4d9affc7fc199d3b17be3be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
" Test for displaying stuff

if !has('gui_running') && has('unix')
  set term=ansi
endif

source util/screendump.mnv

func Test_display_foldcolumn()
  CheckFeature folding

  new
  vnew
  vert resize 25
  call assert_equal(25, winwidth(winnr()))
  set isprint=@

  1put='e more noise blah blah‚ more stuff here'

  let expect = [
        \ "e more noise blah blah<82",
        \ "> more stuff here        "
        \ ]

  call cursor(2, 1)
  norm! zt
  let lines = ScreenLines([1,2], winwidth(0))
  call assert_equal(expect, lines)
  set fdc=2
  let lines = ScreenLines([1,2], winwidth(0))
  let expect = [
        \ "  e more noise blah blah<",
        \ "  82> more stuff here    "
        \ ]
  call assert_equal(expect, lines)

  quit!
  quit!
endfunc

func Test_display_foldtext_mbyte()
  CheckFeature folding

  call NewWindow(10, 40)
  call append(0, range(1,20))
  exe "set foldmethod=manual foldtext=foldtext() fillchars=fold:\u2500,vert:\u2502 fdc=2"
  call cursor(2, 1)
  norm! zf13G
  let lines=ScreenLines([1,3], winwidth(0)+1)
  let expect=[
        \ "  1                                     \u2502",
        \ "+ +-- 12 lines: 2". repeat("\u2500", 23). "\u2502",
        \ "  14                                    \u2502",
        \ ]
  call assert_equal(expect, lines)

  set fillchars=fold:-,vert:\|
  let lines=ScreenLines([1,3], winwidth(0)+1)
  let expect=[
        \ "  1                                     |",
        \ "+ +-- 12 lines: 2". repeat("-", 23). "|",
        \ "  14                                    |",
        \ ]
  call assert_equal(expect, lines)

  set foldtext& fillchars& foldmethod& fdc&
  bw!
endfunc

" check that win_ins_lines() and win_del_lines() work when t_cs is empty.
func Test_scroll_without_region()
  CheckScreendump

  let lines =<< trim END
    call setline(1, range(1, 20))
    set t_cs=
    set laststatus=2
  END
  call writefile(lines, 'Xtestscroll', 'D')
  let buf = RunMNVInTerminal('-S Xtestscroll', #{rows: 10})

  call VerifyScreenDump(buf, 'Test_scroll_no_region_1', {})

  call term_sendkeys(buf, ":3delete\<cr>")
  call VerifyScreenDump(buf, 'Test_scroll_no_region_2', {})

  call term_sendkeys(buf, ":4put\<cr>")
  call VerifyScreenDump(buf, 'Test_scroll_no_region_3', {})

  call term_sendkeys(buf, ":undo\<cr>")
  call term_sendkeys(buf, ":undo\<cr>")
  call term_sendkeys(buf, ":set laststatus=0\<cr>")
  call VerifyScreenDump(buf, 'Test_scroll_no_region_4', {})

  call term_sendkeys(buf, ":3delete\<cr>")
  call VerifyScreenDump(buf, 'Test_scroll_no_region_5', {})

  call term_sendkeys(buf, ":4put\<cr>")
  call VerifyScreenDump(buf, 'Test_scroll_no_region_6', {})

  " clean up
  call StopMNVInTerminal(buf)
endfunc

func Test_display_listchars_precedes()
  call NewWindow(10, 10)
  " Need a physical line that wraps over the complete
  " window size
  call append(0, repeat('aaa aaa aa ', 10))
  call append(1, repeat(['bbb bbb bbb bbb'], 2))
  " remove blank trailing line
  $d
  set list nowrap
  call cursor(1, 1)
  " move to end of line and scroll 2 characters back
  norm! $2zh
  let lines=ScreenLines([1,4], winwidth(0)+1)
  let expect = [
        \ " aaa aa $ |",
        \ "$         |",
        \ "$         |",
        \ "~         |",
        \ ]
  call assert_equal(expect, lines)
  set list listchars+=precedes:< nowrap
  call cursor(1, 1)
  " move to end of line and scroll 2 characters back
  norm! $2zh
  let lines = ScreenLines([1,4], winwidth(0)+1)
  let expect = [
        \ "<aaa aa $ |",
        \ "<         |",
        \ "<         |",
        \ "~         |",
        \ ]
  call assert_equal(expect, lines)
  set wrap
  call cursor(1, 1)
  " the complete line should be displayed in the window
  norm! $

  let lines = ScreenLines([1,10], winwidth(0)+1)
  let expect = [
        \ "<aaa aaa a|",
        \ "a aaa aaa |",
        \ "aa aaa aaa|",
        \ " aa aaa aa|",
        \ "a aa aaa a|",
        \ "aa aa aaa |",
        \ "aaa aa aaa|",
        \ " aaa aa aa|",
        \ "a aaa aa a|",
        \ "aa aaa aa |",
        \ ]
  call assert_equal(expect, lines)
  set list& listchars& wrap&
  bw!
endfunc

" Check that win_lines() works correctly with the number_only parameter=TRUE
" should break early to optimize cost of drawing, but needs to make sure
" that the number column is correctly highlighted.
func Test_scroll_CursorLineNr_update()
  CheckScreendump

  let lines =<< trim END
    hi CursorLineNr ctermfg=73 ctermbg=236
    set nu rnu cursorline cursorlineopt=number
    exe ":norm! o\<esc>110ia\<esc>"
  END
  let filename = 'Xdrawscreen'
  call writefile(lines, filename, 'D')
  let buf = RunMNVInTerminal('-S '.filename, #{rows: 5, cols: 50})
  call term_sendkeys(buf, "k")
  call VerifyScreenDump(buf, 'Test_winline_rnu', {})

  " clean up
  call StopMNVInTerminal(buf)
endfunc

" check a long file name does not result in the hit-enter prompt
func Test_edit_long_file_name()
  CheckScreendump

  let longName = 'x'->repeat(min([&columns, 255]))
  call writefile([], longName, 'D')
  let buf = RunMNVInTerminal('-N -u NONE --cmd ":set noshowcmd noruler" ' .. longName, #{rows: 8})

  call VerifyScreenDump(buf, 'Test_long_file_name_1', {})

  call term_sendkeys(buf, ":set showcmd\<cr>:e!\<cr>")
  call VerifyScreenDump(buf, 'Test_long_file_name_2', {})

  " clean up
  call StopMNVInTerminal(buf)
  set ruler&mnv
endfunc

func Test_edit_long_file_name_with_ruler()
  CheckScreendump

  let longName = 'x'->repeat(min([&columns, 255]))
  call writefile([], longName, 'D')
  let buf = RunMNVInTerminal('-N -u NONE --cmd ":set noshowcmd" ' .. longName, #{rows: 8})

  call VerifyScreenDump(buf, 'Test_long_file_name_3', {})

  call term_sendkeys(buf, ":set showcmd\<cr>:e!\<cr>")
  call VerifyScreenDump(buf, 'Test_long_file_name_4', {})

  " clean up
  call StopMNVInTerminal(buf)
endfunc

func Test_unprintable_fileformats()
  CheckScreendump

  call writefile(["unix\r", "two"], 'Xunix.txt', 'D')
  call writefile(["mac\r", "two"], 'Xmac.txt', 'D')
  let lines =<< trim END
    edit Xunix.txt
    split Xmac.txt
    edit ++ff=mac
  END
  let filename = 'Xunprintable'
  call writefile(lines, filename, 'D')
  let buf = RunMNVInTerminal('-S '.filename, #{rows: 9, cols: 50})
  call VerifyScreenDump(buf, 'Test_display_unprintable_01', {})
  call term_sendkeys(buf, "\<C-W>\<C-W>\<C-L>")
  call VerifyScreenDump(buf, 'Test_display_unprintable_02', {})

  " clean up
  call StopMNVInTerminal(buf)
endfunc

func Test_display_scroll_at_topline()
  CheckScreendump

  let buf = RunMNVInTerminal('', #{cols: 20})
  call term_sendkeys(buf, ":call setline(1, repeat('a', 21))\<CR>")
  call TermWait(buf)
  call term_sendkeys(buf, "O\<Esc>")
  call VerifyScreenDump(buf, 'Test_display_scroll_at_topline', #{rows: 4})

  call StopMNVInTerminal(buf)
endfunc

func Test_display_scroll_update_visual()
  CheckScreendump

  let lines =<< trim END
      set scrolloff=0
      call setline(1, repeat(['foo'], 10))
      call sign_define('foo', { 'text': '>' })
      call sign_place(1, 'bar', 'foo', bufnr(), { 'lnum': 2 })
      call sign_place(2, 'bar', 'foo', bufnr(), { 'lnum': 1 })
      autocmd CursorMoved * if getcurpos()[1] == 2 | call sign_unplace('bar', { 'id': 1 }) | endif
  END
  call writefile(lines, 'XupdateVisual.mnv', 'D')

  let buf = RunMNVInTerminal('-S XupdateVisual.mnv', #{rows: 8, cols: 60})
  call term_sendkeys(buf, "VG7kk")
  call VerifyScreenDump(buf, 'Test_display_scroll_update_visual', {})

  call StopMNVInTerminal(buf)
endfunc

func Test_display_scroll_setline()
  CheckScreendump

  let lines =<< trim END
    setlocal scrolloff=5 signcolumn=yes
    call setline(1, range(1, 100))
    call sign_define('foo', #{text: '>'})
    call sign_place(1, 'bar', 'foo', bufnr(), #{lnum: 71})
    call sign_place(2, 'bar', 'foo', bufnr(), #{lnum: 72})
    call sign_place(3, 'bar', 'foo', bufnr(), #{lnum: 73})
    call sign_place(4, 'bar', 'foo', bufnr(), #{lnum: 74})
    call sign_place(5, 'bar', 'foo', bufnr(), #{lnum: 75})
    normal! G
    autocmd CursorMoved * if line('.') == 79
                      \ |   call sign_unplace('bar', #{id: 4})
                      \ |   call setline(80, repeat('foo', 15))
                      \ | elseif line('.') == 78
                      \ |   call setline(72, repeat('bar', 10))
                      \ | elseif line('.') == 77
                      \ |   call sign_unplace('bar', #{id: 2})
                      \ | endif
  END
  call writefile(lines, 'XscrollSetline.mnv', 'D')

  let buf = RunMNVInTerminal('-S XscrollSetline.mnv', #{rows: 15, cols: 20})
  call VerifyScreenDump(buf, 'Test_display_scroll_setline_1', {})
  call term_sendkeys(buf, '19k')
  call VerifyScreenDump(buf, 'Test_display_scroll_setline_2', {})
  call term_sendkeys(buf, 'k')
  call VerifyScreenDump(buf, 'Test_display_scroll_setline_3', {})
  call term_sendkeys(buf, 'k')
  call VerifyScreenDump(buf, 'Test_display_scroll_setline_4', {})
  call term_sendkeys(buf, 'k')
  call VerifyScreenDump(buf, 'Test_display_scroll_setline_5', {})
  call term_sendkeys(buf, 'k')
  call VerifyScreenDump(buf, 'Test_display_scroll_setline_6', {})

  call StopMNVInTerminal(buf)
endfunc

func Test_display_hit_enter_setline()
  CheckScreendump

  let lines =<< trim END
    call setline(1, range(1, 100))
  END
  call writefile(lines, 'XhitEnterSetline.mnv', 'D')

  let buf = RunMNVInTerminal('-S XhitEnterSetline.mnv', #{rows: 8, cols: 40})
  call VerifyScreenDump(buf, 'Test_display_hit_enter_setline_1', {})
  call term_sendkeys(buf, ':echo "abc\ndef\nghi"')
  call term_sendkeys(buf, "\<CR>")
  call VerifyScreenDump(buf, 'Test_display_hit_enter_setline_2', {})
  call term_sendkeys(buf, ":call setline(2, repeat('foo', 35))\<CR>")
  call VerifyScreenDump(buf, 'Test_display_hit_enter_setline_3', {})

  call StopMNVInTerminal(buf)
endfunc

" Test for 'eob' (EndOfBuffer) item in 'fillchars'
func Test_eob_fillchars()
  " default value
  call assert_match('eob:\~', &fillchars)
  " invalid values
  call assert_fails(':set fillchars=eob:', 'E1511:')
  call assert_fails(':set fillchars=eob:xy', 'E1511:')
  call assert_fails(':set fillchars=eob:\255', 'E1511:')
  call assert_fails(':set fillchars=eob:<ff>', 'E1511:')
  call assert_fails(":set fillchars=eob:\x01", 'E1512:')
  call assert_fails(':set fillchars=eob:\\x01', 'E1512:')
  " default is ~
  new
  redraw
  call assert_equal('~', Screenline(2))
  set fillchars=eob:+
  redraw
  call assert_equal('+', Screenline(2))
  let &fillchars = 'eob: '
  redraw
  call assert_equal(' ', nr2char(screenchar(2, 1)))
  set fillchars&
  close
endfunc

" Test for 'foldopen', 'foldclose' and 'foldsep' in 'fillchars'
func Test_fold_fillchars()
  new
  set fdc=2 foldenable foldmethod=manual
  call setline(1, ['one', 'two', 'three', 'four', 'five'])
  2,4fold
  " First check for the default setting for a closed fold
  let lines = ScreenLines([1, 3], 8)
  let expected = [
        \ '  one   ',
        \ '+ +--  3',
        \ '  five  '
        \ ]
  call assert_equal(expected, lines)
  normal 2Gzo
  " check the characters for an open fold
  let lines = ScreenLines([1, 5], 8)
  let expected = [
        \ '  one   ',
        \ '- two   ',
        \ '| three ',
        \ '| four  ',
        \ '  five  '
        \ ]
  call assert_equal(expected, lines)

  " change the setting
  set fillchars=vert:\|,fold:-,eob:~,foldopen:[,foldclose:],foldsep:-

  " check the characters for an open fold
  let lines = ScreenLines([1, 5], 8)
  let expected = [
        \ '  one   ',
        \ '[ two   ',
        \ '- three ',
        \ '- four  ',
        \ '  five  '
        \ ]
  call assert_equal(expected, lines)

  " check the characters for a closed fold
  normal 2Gzc
  let lines = ScreenLines([1, 3], 8)
  let expected = [
        \ '  one   ',
        \ '] +--  3',
        \ '  five  '
        \ ]
  call assert_equal(expected, lines)

  set fdc=1 foldmethod=indent foldlevel=10
  call setline(1, ['one', '	two', '	two', '		three', '		three', 'four'])
  let lines = ScreenLines([1, 6], 22)
  let expected = [
        \ ' one                  ',
        \ '[        two          ',
        \ '-        two          ',
        \ '[                three',
        \ '2                three',
        \ ' four                 ',
        \ ]
  call assert_equal(expected, lines)

  " check setting foldinner
  let &fillchars = &fillchars .. ',foldinner: '
  let lines = ScreenLines([1, 6], 22)
  let expected = [
        \ ' one                  ',
        \ '[        two          ',
        \ '-        two          ',
        \ '[                three',
        \ '                 three',
        \ ' four                 ',
        \ ]
  call assert_equal(expected, lines)

  " check Unicode chars
  set fillchars=foldopen:▼,foldclose:▶,fold:⋯,foldsep:‖,foldinner:⋮
  let lines = ScreenLines([1, 6], 22)
  let expected = [
        \ ' one                  ',
        \ '▼        two          ',
        \ '‖        two          ',
        \ '▼                three',
        \ '⋮                three',
        \ ' four                 ',
        \ ]
  call assert_equal(expected, lines)

  set fillchars-=foldinner:⋮
  let lines = ScreenLines([1, 6], 22)
  let expected = [
        \ ' one                  ',
        \ '▼        two          ',
        \ '‖        two          ',
        \ '▼                three',
        \ '2                three',
        \ ' four                 ',
        \ ]
  call assert_equal(expected, lines)

  normal! 5ggzc
  let lines = ScreenLines([1, 5], 24)
  let expected = [
        \ ' one                    ',
        \ '▼        two            ',
        \ '‖        two            ',
        \ '▶+---  2 lines: three⋯⋯⋯',
        \ ' four                   ',
        \ ]
  call assert_equal(expected, lines)

  %bw!
  set fillchars& fdc& foldmethod& foldenable&
endfunc

func Test_local_fillchars()
  CheckScreendump

  let lines =<< trim END
      call setline(1, ['window 1']->repeat(3))
      setlocal fillchars=stl:1,stlnc:a,vert:=,eob:x
      vnew
      call setline(1, ['window 2']->repeat(3))
      setlocal fillchars=stl:2,stlnc:b,vert:+,eob:y
      new
      wincmd J
      call setline(1, ['window 3']->repeat(3))
      setlocal fillchars=stl:3,stlnc:c,vert:<,eob:z
      vnew
      call setline(1, ['window 4']->repeat(3))
      setlocal fillchars=stl:4,stlnc:d,vert:>,eob:o
  END
  call writefile(lines, 'Xdisplayfillchars', 'D')
  let buf = RunMNVInTerminal('-S Xdisplayfillchars', #{rows: 12})
  call VerifyScreenDump(buf, 'Test_display_fillchars_1', {})

  call term_sendkeys(buf, ":wincmd k\r")
  call VerifyScreenDump(buf, 'Test_display_fillchars_2', {})

  call StopMNVInTerminal(buf)
endfunc

func Test_display_linebreak_breakat()
  new
  vert resize 25
  let _breakat = &breakat
  setl signcolumn=yes linebreak breakat=) showbreak=++
  call setline(1, repeat('x', winwidth(0) - 2) .. ')abc')
  let lines = ScreenLines([1, 2], 25)
  let expected = [
          \ '  xxxxxxxxxxxxxxxxxxxxxxx',
          \ '  ++)abc                 ',
          \ ]
  call assert_equal(expected, lines)
  setl breakindent breakindentopt=shift:2
  let lines = ScreenLines([1, 2], 25)
  let expected = [
          \ '  xxxxxxxxxxxxxxxxxxxxxxx',
          \ '    ++)abc               ',
          \ ]
  call assert_equal(expected, lines)
  %bw!
  let &breakat=_breakat
endfunc

func Run_Test_display_lastline(euro)
  CheckScreendump

  let lines =<< trim END
      call setline(1, ['aaa', 'b'->repeat(200)])
      set display=truncate

      vsplit
      100wincmd <
  END
  if a:euro != ''
    let lines[2] = 'set fillchars=vert:\|,lastline:€'
  endif
  call writefile(lines, 'XdispLastline', 'D')
  let buf = RunMNVInTerminal('-S XdispLastline', #{rows: 10})
  call VerifyScreenDump(buf, $'Test_display_lastline_{a:euro}1', {})

  call term_sendkeys(buf, ":set display=lastline\<CR>")
  call VerifyScreenDump(buf, $'Test_display_lastline_{a:euro}2', {})

  call term_sendkeys(buf, ":100wincmd >\<CR>")
  call VerifyScreenDump(buf, $'Test_display_lastline_{a:euro}3', {})

  call term_sendkeys(buf, ":set display=truncate\<CR>")
  call VerifyScreenDump(buf, $'Test_display_lastline_{a:euro}4', {})

  call term_sendkeys(buf, ":close\<CR>")
  call term_sendkeys(buf, ":3split\<CR>")
  call VerifyScreenDump(buf, $'Test_display_lastline_{a:euro}5', {})

  call term_sendkeys(buf, ":close\<CR>")
  call term_sendkeys(buf, ":2vsplit\<CR>")
  call VerifyScreenDump(buf, $'Test_display_lastline_{a:euro}6', {})

  call StopMNVInTerminal(buf)
endfunc

func Test_display_lastline_dump()
  CheckScreendump

  call Run_Test_display_lastline('')
  call Run_Test_display_lastline('euro_')
endfunc

func Test_display_lastline_fails()
  call assert_fails(':set fillchars=lastline:', 'E1511:')
  call assert_fails(':set fillchars=lastline:〇', 'E1512:')
endfunc

func Test_display_long_lastline()
  CheckScreendump

  let lines =<< trim END
    set display=lastline smoothscroll scrolloff=0
    call setline(1, [
      \'aaaaa'->repeat(150),
      \'bbbbb '->repeat(7) .. 'ccccc '->repeat(7) .. 'ddddd '->repeat(7)
    \])
  END

  call writefile(lines, 'XdispLongline', 'D')
  let buf = RunMNVInTerminal('-S XdispLongline', #{rows: 14, cols: 35})

  call term_sendkeys(buf, "736|")
  call VerifyScreenDump(buf, 'Test_display_long_line_1', {})

  " The correct part of the last line is moved into view.
  call term_sendkeys(buf, "D")
  call VerifyScreenDump(buf, 'Test_display_long_line_2', {})

  " "w_skipcol" does not change because the topline is still long enough
  " to maintain the current skipcol.
  call term_sendkeys(buf, "g04l11gkD")
  call VerifyScreenDump(buf, 'Test_display_long_line_3', {})

  " "w_skipcol" is reset to bring the entire topline into view because
  " the line length is now smaller than the current skipcol + marker.
  call term_sendkeys(buf, "x")
  call VerifyScreenDump(buf, 'Test_display_long_line_4', {})

  call StopMNVInTerminal(buf)
endfunc

" Moving the cursor to a line that doesn't fit in the window should show
" correctly.
func Test_display_cursor_long_line()
  CheckScreendump

  let lines =<< trim END
    call setline(1, ['a', 'b ' .. 'bbbbb'->repeat(150), 'c'])
    norm $j
  END

  call writefile(lines, 'XdispCursorLongline', 'D')
  let buf = RunMNVInTerminal('-S XdispCursorLongline', #{rows: 8})

  call VerifyScreenDump(buf, 'Test_display_cursor_long_line_1', {})

  " FIXME: moving the cursor above the topline does not set w_skipcol
  " correctly with cpo+=n and zero scrolloff (curs_columns() extra == 1).
  call term_sendkeys(buf, ":set number cpo+=n scrolloff=0\<CR>")
  call term_sendkeys(buf, '$0')
  call VerifyScreenDump(buf, 'Test_display_cursor_long_line_2', {})

  " Going to the start of the line with "b" did not set w_skipcol correctly
  " with 'smoothscroll'.
   call term_sendkeys(buf, ":set smoothscroll\<CR>")
   call term_sendkeys(buf, '$b')
   call VerifyScreenDump(buf, 'Test_display_cursor_long_line_3', {})
  " Same for "ge".
   call term_sendkeys(buf, '$ge')
   call VerifyScreenDump(buf, 'Test_display_cursor_long_line_4', {})

  call StopMNVInTerminal(buf)
endfunc

func Test_change_wrapped_line_cpo_dollar()
  CheckScreendump

  let lines =<< trim END
    set cpoptions+=$ laststatus=0
    call setline(1, ['foo', 'bar',
          \ repeat('x', 25) .. '!!()!!' .. repeat('y', 25),
          \ 'FOO', 'BAR'])
    inoremap <F2> <Cmd>call setline(1, repeat('z', 30))<CR>
    inoremap <F3> <Cmd>call setline(1, 'foo')<CR>
    vsplit
    call cursor(3, 1)
  END
  call writefile(lines, 'Xwrapped_cpo_dollar', 'D')
  let buf = RunMNVInTerminal('-S Xwrapped_cpo_dollar', #{rows: 10, cols: 45})

  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_01', {})
  call term_sendkeys(buf, 'ct!')
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_02', {})
  call term_sendkeys(buf, "\<F2>")
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_03', {})
  call term_sendkeys(buf, "\<F3>")
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_02', {})
  call term_sendkeys(buf, 'y')
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_04', {})
  call term_sendkeys(buf, 'y')
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_05', {})
  call term_sendkeys(buf, "\<Esc>")
  call TermWait(buf, 50)
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_06', {})

  call term_sendkeys(buf, ":silent undo | echo\<CR>")
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_01', {})
  call term_sendkeys(buf, ":source samples/matchparen.mnv\<CR>")
  call term_sendkeys(buf, 'ct(')
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_07', {})
  call term_sendkeys(buf, 'y')
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_08', {})
  call term_sendkeys(buf, 'y')
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_09', {})
  call term_sendkeys(buf, "\<Esc>")
  call TermWait(buf, 50)
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_10', {})

  call term_sendkeys(buf, ":silent undo | echo\<CR>")
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_01', {})
  call term_sendkeys(buf, "f(azz\<CR>zz\<Esc>k0")
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_11', {})
  call term_sendkeys(buf, 'ct(')
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_12', {})
  call term_sendkeys(buf, 'y')
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_13', {})
  call term_sendkeys(buf, 'y')
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_14', {})
  call term_sendkeys(buf, "\<Esc>")
  call TermWait(buf, 50)
  call VerifyScreenDump(buf, 'Test_change_wrapped_line_cpo_dollar_15', {})

  call StopMNVInTerminal(buf)
endfunc

" mnv: shiftwidth=2 sts=2 expandtab