comparison src/testdir/test_messages.vim @ 29910:24fd6fbcd0c0 v9.0.0293

patch 9.0.0293: messages window not hidden when starting a command line Commit: https://github.com/vim/vim/commit/b0509c542ed974cb388d49273d365ff2daf43159 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 28 12:06:21 2022 +0100 patch 9.0.0293: messages window not hidden when starting a command line Problem: Messages window not hidden when starting a command line. Solution: Hide the messages window. (closes https://github.com/vim/vim/issues/10996)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Aug 2022 13:15:05 +0200
parents f60329b1ff1d
children c9ff1715f03d
comparison
equal deleted inserted replaced
29909:170606715a46 29910:24fd6fbcd0c0
396 396
397 echo 'test echo' 397 echo 'test echo'
398 if using_popupwin 398 if using_popupwin
399 redraw 399 redraw
400 call assert_equal('test echo', Screenline(&lines)) 400 call assert_equal('test echo', Screenline(&lines))
401
402 " check that the popup is cleared when entering a command line
403 call feedkeys(':', 'xt')
404 redraw
405 call assert_equal('~', Screenline(&lines))
401 else 406 else
402 call assert_equal(116, screenchar(&lines, 1)) 407 call assert_equal(116, screenchar(&lines, 1))
403 endif 408 endif
404 redraw! 409 redraw!
405 410