From 4e56f7f0beafcd9db1775a76dcf2d2a4ef2867ba Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 29 Mar 2024 06:26:01 +0800 Subject: test: skip another flaky test on macOS (#28087) --- src/nvim/tui/tui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index d71366b7db..840d3bf446 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -413,7 +413,7 @@ static void terminfo_start(TUIData *tui) // mode 2026 tui_request_term_mode(tui, kTermModeSynchronizedOutput); - // Don't use DECRQSS in screen or tmux, as they behave strangely when receving that. + // Don't use DECRQSS in screen or tmux, as they behave strangely when receiving it. if (tui->unibi_ext.set_underline_style == -1 && !(screen || tmux)) { // Query the terminal to see if it supports extended underline. tui_query_extended_underline(tui); -- cgit