diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-03-29 06:26:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-29 06:26:01 +0800 |
commit | 4e56f7f0beafcd9db1775a76dcf2d2a4ef2867ba (patch) | |
tree | acffd2d2f7b86ddb00a4e6269992f8eba44fa1d0 /src | |
parent | 00b7428b3bf5c30ccfa8322f7b8452a764a0abd0 (diff) | |
download | rneovim-4e56f7f0beafcd9db1775a76dcf2d2a4ef2867ba.tar.gz rneovim-4e56f7f0beafcd9db1775a76dcf2d2a4ef2867ba.tar.bz2 rneovim-4e56f7f0beafcd9db1775a76dcf2d2a4ef2867ba.zip |
test: skip another flaky test on macOS (#28087)
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/tui/tui.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |