view src/testdir/test_iminsert.vim @ 14489:cda216729f9b v8.1.0258

patch 8.1.0258: not enough testing for the CompleteDone event commit https://github.com/vim/vim/commit/af559d2c9f44bc88a7d94f9236b3c024563a8e73 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 8 22:55:41 2018 +0200 patch 8.1.0258: not enough testing for the CompleteDone event Problem: Not enough testing for the CompleteDone event. Solution: Add a test. (closes https://github.com/vim/vim/issues/3297)
author Christian Brabandt <cb@256bit.org>
date Wed, 08 Aug 2018 23:00:06 +0200
parents c53a80f39a52
children 2dcaa860e3fc
line wrap: on
line source

if !has('multi_byte')
  finish
endif

source view_util.vim

let s:imactivatefunc_called = 0
let s:imstatusfunc_called = 0

func IM_activatefunc(active)
  let s:imactivatefunc_called = 1
endfunc

func IM_statusfunc()
  let s:imstatusfunc_called = 1
  return 0
endfunc

func Test_iminsert2()
  set imactivatefunc=IM_activatefunc
  set imstatusfunc=IM_statusfunc
  set iminsert=2
  normal! i
  set iminsert=0
  set imactivatefunc=
  set imstatusfunc=

  let expected = has('gui_running') ? 0 : 1
  call assert_equal(expected, s:imactivatefunc_called)
  call assert_equal(expected, s:imstatusfunc_called)
endfunc