2016-09-07 20:46:39 +02:00
|
|
|
" Test for v:hlsearch
|
|
|
|
|
|
2020-08-12 18:50:36 +02:00
|
|
|
source check.vim
|
|
|
|
|
|
2019-01-09 23:01:02 +01:00
|
|
|
func Test_hlsearch()
|
2016-09-07 20:46:39 +02:00
|
|
|
new
|
|
|
|
|
call setline(1, repeat(['aaa'], 10))
|
|
|
|
|
set hlsearch nolazyredraw
|
|
|
|
|
" redraw is needed to make hlsearch highlight the matches
|
|
|
|
|
exe "normal! /aaa\<CR>" | redraw
|
|
|
|
|
let r1 = screenattr(1, 1)
|
|
|
|
|
nohlsearch | redraw
|
|
|
|
|
call assert_notequal(r1, screenattr(1,1))
|
|
|
|
|
let v:hlsearch=1 | redraw
|
|
|
|
|
call assert_equal(r1, screenattr(1,1))
|
|
|
|
|
let v:hlsearch=0 | redraw
|
|
|
|
|
call assert_notequal(r1, screenattr(1,1))
|
|
|
|
|
set hlsearch | redraw
|
|
|
|
|
call assert_equal(r1, screenattr(1,1))
|
|
|
|
|
let v:hlsearch=0 | redraw
|
|
|
|
|
call assert_notequal(r1, screenattr(1,1))
|
|
|
|
|
exe "normal! n" | redraw
|
|
|
|
|
call assert_equal(r1, screenattr(1,1))
|
|
|
|
|
let v:hlsearch=0 | redraw
|
|
|
|
|
call assert_notequal(r1, screenattr(1,1))
|
|
|
|
|
exe "normal! /\<CR>" | redraw
|
|
|
|
|
call assert_equal(r1, screenattr(1,1))
|
|
|
|
|
set nohls
|
|
|
|
|
exe "normal! /\<CR>" | redraw
|
|
|
|
|
call assert_notequal(r1, screenattr(1,1))
|
2020-09-04 21:18:46 +02:00
|
|
|
call assert_fails('let v:hlsearch=[]', 'E745:')
|
2016-09-07 20:46:39 +02:00
|
|
|
call garbagecollect(1)
|
|
|
|
|
call getchar(1)
|
|
|
|
|
enew!
|
2019-01-09 23:01:02 +01:00
|
|
|
endfunc
|
2017-06-17 19:13:49 +02:00
|
|
|
|
|
|
|
|
func Test_hlsearch_hangs()
|
2020-08-12 18:50:36 +02:00
|
|
|
CheckFunction reltimefloat
|
2017-06-17 19:13:49 +02:00
|
|
|
|
2017-06-17 20:08:20 +02:00
|
|
|
" This pattern takes a long time to match, it should timeout.
|
2017-06-17 20:55:06 +02:00
|
|
|
new
|
|
|
|
|
call setline(1, ['aaa', repeat('abc ', 1000), 'ccc'])
|
2017-06-17 19:13:49 +02:00
|
|
|
let start = reltime()
|
|
|
|
|
set hlsearch nolazyredraw redrawtime=101
|
2017-06-17 20:08:20 +02:00
|
|
|
let @/ = '\%#=1a*.*X\@<=b*'
|
2017-06-17 19:13:49 +02:00
|
|
|
redraw
|
|
|
|
|
let elapsed = reltimefloat(reltime(start))
|
|
|
|
|
call assert_true(elapsed > 0.1)
|
|
|
|
|
call assert_true(elapsed < 1.0)
|
|
|
|
|
set nohlsearch redrawtime&
|
2017-06-17 20:55:06 +02:00
|
|
|
bwipe!
|
2017-06-17 19:13:49 +02:00
|
|
|
endfunc
|
2018-09-02 15:07:28 +02:00
|
|
|
|
|
|
|
|
func Test_hlsearch_eol_highlight()
|
|
|
|
|
new
|
|
|
|
|
call append(1, repeat([''], 9))
|
|
|
|
|
set hlsearch nolazyredraw
|
|
|
|
|
exe "normal! /$\<CR>" | redraw
|
|
|
|
|
let attr = screenattr(1, 1)
|
|
|
|
|
for row in range(2, 10)
|
|
|
|
|
call assert_equal(attr, screenattr(row, 1), 'in line ' . row)
|
|
|
|
|
endfor
|
|
|
|
|
set nohlsearch
|
|
|
|
|
bwipe!
|
|
|
|
|
endfunc
|
2020-08-12 18:50:36 +02:00
|
|
|
|
|
|
|
|
" vim: shiftwidth=2 sts=2 expandtab
|