Mercurial > vim
view src/testdir/test_balloon_gui.vim @ 32023:e8325653b814 v9.0.1343
patch 9.0.1343: check for OSC escape sequence doesn't work
Commit: https://github.com/vim/vim/commit/3451789f58b24d48fc97301a01a8d27bd154caf5
Author: Johan Mattsson <39247600+mjunix@users.noreply.github.com>
Date: Thu Feb 23 12:46:04 2023 +0000
patch 9.0.1343: check for OSC escape sequence doesn't work
Problem: Check for OSC escape sequence doesn't work.
Solution: Move square bracket to the right place. (Johan Mattsson,
closes #12048)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 23 Feb 2023 14:00:04 +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