Mercurial > vim
changeset 31369:03da3e28883e v9.0.1018
patch 9.0.1018: suspend test still fails on Mac OS
Commit: https://github.com/vim/vim/commit/7155fb6614f45a4e573bbfca23b5d150604ad506
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Dec 6 09:11:39 2022 +0000
patch 9.0.1018: suspend test still fails on Mac OS
Problem: Suspend test still fails on Mac OS.
Solution: Make 'keyprotocol' empty.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 06 Dec 2022 10:15:06 +0100 |
parents | b5ec60ece49d |
children | b34c56a60bcb |
files | src/testdir/test_suspend.vim src/version.c |
diffstat | 2 files changed, 8 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_suspend.vim +++ b/src/testdir/test_suspend.vim @@ -22,9 +22,9 @@ func Test_suspend() CheckFeature terminal CheckExecutable /bin/sh - " Somehow the modifyOtherKeys response may get to the terminal when using Mac - " OS. Make t_RK empty to avoid that. - set t_RK= + " Somehow the modifyOtherKeys response may get to the terminal when using + " Mac OS. Make t_RK and 'keyprotocol' empty to avoid that. + set t_RK= keyprotocol= call WaitForResponses() @@ -72,9 +72,9 @@ func Test_suspend_autocmd() CheckFeature terminal CheckExecutable /bin/sh - " Somehow the modifyOtherKeys response may get to the terminal when using Mac - " OS. Make t_RK empty to avoid that. - set t_RK= + " Somehow the modifyOtherKeys response may get to the terminal when using + " Mac OS. Make t_RK and 'keyprotocol' empty to avoid that. + set t_RK= keyprotocol= call WaitForResponses()