HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //home/ubuntu/neovim/test/functional/legacy/101_hlsearch_spec.lua
-- Test for v:hlsearch

local n = require('test.functional.testnvim')()

local clear, feed = n.clear, n.feed
local feed_command, expect = n.feed_command, n.expect

describe('v:hlsearch', function()
  setup(clear)

  it('is working', function()
    -- Last abc: Q
    feed_command('new')
    feed_command([[call setline(1, repeat(['aaa'], 10))]])
    feed_command('set hlsearch nolazyredraw')
    feed_command('let r=[]')
    feed_command('command -nargs=0 -bar AddR :call add(r, [screenattr(1, 1), v:hlsearch])')
    feed_command('/aaa')
    feed_command('AddR')
    feed_command('nohlsearch')
    feed_command('AddR')
    feed_command('let v:hlsearch=1')
    feed_command('AddR')
    feed_command('let v:hlsearch=0')
    feed_command('AddR')
    feed_command('set hlsearch')
    feed_command('AddR')
    feed_command('let v:hlsearch=0')
    feed_command('AddR')
    feed('n:AddR<cr>')
    feed_command('let v:hlsearch=0')
    feed_command('AddR')
    feed_command('/')
    feed_command('AddR')
    feed_command('set nohls')
    feed_command('/')
    feed_command('AddR')
    feed_command('let r1=r[0][0]')

    -- I guess it is not guaranteed that screenattr outputs always the same character
    feed_command([[call map(r, 'v:val[1].":".(v:val[0]==r1?"highlighted":"not highlighted")')]])
    feed_command('try')
    feed_command('   let v:hlsearch=[]')
    feed_command('catch')
    feed_command([[   call add(r, matchstr(v:exception,'^Vim(let):E\d\+:'))]])
    feed_command('endtry')
    feed_command('bwipeout!')
    feed_command('$put=r')
    feed_command('call garbagecollect(1)')
    feed_command('call getchar()')
    feed_command('1d', '1d')

    -- Assert buffer contents.
    expect([[
      1:highlighted
      0:not highlighted
      1:highlighted
      0:not highlighted
      1:highlighted
      0:not highlighted
      1:highlighted
      0:not highlighted
      1:highlighted
      0:not highlighted
      Vim(let):E745:]])
  end)
end)