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/autocmd/modechanged_spec.lua
local t = require('test.testutil')
local n = require('test.functional.testnvim')()

local clear, eval, eq = n.clear, n.eval, t.eq
local feed, command = n.feed, n.command
local exec_lua = n.exec_lua

describe('ModeChanged', function()
  before_each(function()
    clear()
  end)

  it('picks up terminal mode changes', function()
    command('let g:count = 0')
    command('au ModeChanged * let g:event = copy(v:event)')
    command('au ModeChanged * let g:count += 1')

    command('term')
    feed('i')
    eq({
      old_mode = 'nt',
      new_mode = 't',
    }, eval('g:event'))
    feed('<c-\\><c-n>')
    eq({
      old_mode = 't',
      new_mode = 'nt',
    }, eval('g:event'))
    eq(3, eval('g:count'))
    command('bd!')

    -- v:event is cleared after the autocommand is done
    eq({}, eval('v:event'))
  end)

  it('does not repeatedly trigger for scheduled callback', function()
    exec_lua([[
      vim.g.s_count = 0
      vim.g.s_mode = ""
      vim.g.t_count = 0
      vim.g.t_mode = ""
      vim.api.nvim_create_autocmd("ModeChanged", {
        callback = function()
          vim.g.s_count = vim.g.s_count + 1
          vim.g.s_mode = vim.api.nvim_get_mode().mode
          vim.schedule(function()
            vim.g.t_count = vim.g.t_count + 1
            vim.g.t_mode = vim.api.nvim_get_mode().mode
          end)
        end,
      })
    ]])

    feed('d')
    eq(1, eval('g:s_count'))
    eq('no', eval('g:s_mode'))
    eq(1, eval('g:t_count'))
    eq('no', eval('g:t_mode'))

    feed('<Esc>')
    eq(2, eval('g:s_count'))
    eq('n', eval('g:s_mode'))
    eq(2, eval('g:t_count'))
    eq('n', eval('g:t_mode'))
  end)
end)