view src/testdir/test_winbar.vim @ 16144:4850744dc181 v8.1.1077

patch 8.1.1077: reg_executing() is reset by calling input() commit https://github.com/vim/vim/commit/9a2c091a748b380efafe60583698c9afcaab1e46 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 30 14:26:18 2019 +0100 patch 8.1.1077: reg_executing() is reset by calling input() Problem: reg_executing() is reset by calling input(). Solution: Implement a more generic way to save and restore reg_executing. (Ozaki Kiichi, closes #4192)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Mar 2019 14:30:05 +0100
parents 3f16cf18386c
children a147acab726f
line wrap: on
line source

" Test WinBar

if !has('menu')
  finish
endif

func Test_add_remove_menu()
  new
  amenu 1.10 WinBar.Next :let g:did_next = 11<CR>
  amenu 1.20 WinBar.Cont :let g:did_cont = 12<CR>
  emenu WinBar.Next
  call assert_equal(11, g:did_next)
  emenu WinBar.Cont
  call assert_equal(12, g:did_cont)

  wincmd w
  call assert_fails('emenu WinBar.Next', 'E334')
  wincmd p

  aunmenu WinBar.Next
  aunmenu WinBar.Cont
  close
endfunc