view src/testdir/test_balloon_gui.vim @ 23998:0967c54ff3b2 v8.2.2541

patch 8.2.2541: popup_create() does not allow boolean for "cursorline" Commit: https://github.com/vim/vim/commit/6bfc475f717aa0412d13163d47ff6210fa611fb5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 21 23:12:18 2021 +0100 patch 8.2.2541: popup_create() does not allow boolean for "cursorline" Problem: Popup_create() does not allow boolean for "cursorline". Solution: Use dict_get_bool(). (issue https://github.com/vim/vim/issues/7869)
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Feb 2021 23:15:03 +0100
parents 08940efa6b4e
children
line wrap: on
line source

" Tests for 'ballooneval' in the GUI.

source check.vim
CheckGui
CheckFeature balloon_eval

func Test_balloon_show_gui()
  let msg = 'this this this this'
  call balloon_show(msg)
  call assert_equal(msg, balloon_gettext())
  sleep 10m
  call balloon_show('')

  let msg = 'that that'
  eval msg->balloon_show()
  call assert_equal(msg, balloon_gettext())
  sleep 10m
  call balloon_show('')
endfunc

" vim: shiftwidth=2 sts=2 expandtab