aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/highlight_spec.lua
blob: 853b2991e8d0a5c7c8ccc1d2f839bf438158384e (plain) (blame)
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
local helpers = require('test.functional.helpers')(after_each)
local funcs = helpers.funcs
local exec_lua = helpers.exec_lua
local command = helpers.command
local clear = helpers.clear

describe('vim.highlight.on_yank', function()

  before_each(function()
    clear()
  end)

  it('does not show errors even if buffer is wiped before timeout', function()
    command('new')
    local bufnr = funcs.bufnr("%")
    exec_lua[[
      vim.highlight.on_yank({timeout = 10, on_macro = true, event = {operator = "y", regtype = "v"}})
      vim.cmd('bwipeout!')
    ]]
    exec_lua[[vim.wait(10)]]
    local pattern = [[vim/highlight.lua:%d+: Invalid buffer id: ]] .. bufnr
    local exists = pcall(helpers.assert_log, pattern)
    assert.is_false(exists, string.format("%q should not be in log", pattern))
  end)

end)