summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/autocmd/cursormoved_spec.lua
blob: 7cc3a26bfb8418100ad2f1601f5315bbff3432d6 (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
local t = require('test.testutil')
local n = require('test.functional.testnvim')()

local clear = n.clear
local eq = t.eq
local eval = n.eval
local api = n.api
local source = n.source
local command = n.command
local feed = n.feed

describe('CursorMoved', function()
  before_each(clear)

  it('is triggered after BufEnter when changing or splitting windows #11878 #12031', function()
    source([[
      call setline(1, 'foo')
      let g:log = []
      autocmd BufEnter * let g:log += ['BufEnter' .. expand("<abuf>")]
      autocmd CursorMoved * let g:log += ['CursorMoved' .. expand("<abuf>")]
    ]])
    eq({}, eval('g:log'))
    command('new')
    eq({ 'BufEnter2', 'CursorMoved2' }, eval('g:log'))
    command('wincmd w')
    eq({ 'BufEnter2', 'CursorMoved2', 'BufEnter1', 'CursorMoved1' }, eval('g:log'))
  end)

  it('is not triggered by temporarily switching window', function()
    source([[
      let g:cursormoved = 0
      vnew
      autocmd CursorMoved * let g:cursormoved += 1
    ]])
    command('wincmd w | wincmd p')
    eq(0, eval('g:cursormoved'))
  end)

  it("is not triggered by functions that don't change the window", function()
    source([[
      let g:cursormoved = 0
      let g:buf = bufnr('%')
      vsplit foo
      autocmd CursorMoved * let g:cursormoved += 1
    ]])
    api.nvim_buf_set_lines(eval('g:buf'), 0, -1, true, { 'aaa' })
    eq(0, eval('g:cursormoved'))
    eq({ 'aaa' }, api.nvim_buf_get_lines(eval('g:buf'), 0, -1, true))
    eq(0, eval('g:cursormoved'))
  end)

  it('is not triggered by cursor movement prior to first CursorMoved instantiation', function()
    eq({}, api.nvim_get_autocmds({ event = 'CursorMoved' }))
    feed('ifoobar<Esc>')
    source([[
      let g:cursormoved = 0
      autocmd CursorMoved * let g:cursormoved += 1
    ]])
    eq(0, eval('g:cursormoved'))
    feed('<Ignore>')
    eq(0, eval('g:cursormoved'))
    feed('0')
    eq(1, eval('g:cursormoved'))
  end)
end)

describe('CursorMovedI', function()
  before_each(clear)

  it('is not triggered by cursor movement prior to first CursorMovedI instantiation', function()
    eq({}, api.nvim_get_autocmds({ event = 'CursorMovedI' }))
    feed('ifoobar')
    source([[
      let g:cursormovedi = 0
      autocmd CursorMovedI * let g:cursormovedi += 1
    ]])
    eq(0, eval('g:cursormovedi'))
    feed('<Ignore>')
    eq(0, eval('g:cursormovedi'))
    feed('<Home>')
    eq(1, eval('g:cursormovedi'))
  end)
end)