comparison src/testdir/test_cmdline.vim @ 20185:0610f1ddb3a0 v8.2.0648

patch 8.2.0648: semicolon search does not work in first line Commit: https://github.com/vim/vim/commit/0e71704b77a9891ccae9f5a9c7429e933078f232 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 27 19:29:01 2020 +0200 patch 8.2.0648: semicolon search does not work in first line Problem: Semicolon search does not work in first line. Solution: Allow the cursor to be in line zero. (Christian Brabandt, closes #5996)
author Bram Moolenaar <Bram@vim.org>
date Mon, 27 Apr 2020 19:30:04 +0200
parents 16460964c304
children ce55e65d7e41
comparison
equal deleted inserted replaced
20184:0368f09db11b 20185:0610f1ddb3a0
1469 exe "normal q:a\<C-C>let s='Hello'\<CR>" 1469 exe "normal q:a\<C-C>let s='Hello'\<CR>"
1470 call assert_equal('Hello', s) 1470 call assert_equal('Hello', s)
1471 call assert_equal(1, winnr('$')) 1471 call assert_equal(1, winnr('$'))
1472 endfunc 1472 endfunc
1473 1473
1474 " test that ";" works to find a match at the start of the first line
1475 func Test_zero_line_search()
1476 new
1477 call setline(1, ["1, pattern", "2, ", "3, pattern"])
1478 call cursor(1,1)
1479 0;/pattern/d
1480 call assert_equal(["2, ", "3, pattern"], getline(1,'$'))
1481 q!
1482 endfunc
1483
1484
1474 " vim: shiftwidth=2 sts=2 expandtab 1485 " vim: shiftwidth=2 sts=2 expandtab