diff options
author | James McCoy <jamessan@jamessan.com> | 2019-01-01 13:28:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-01 13:28:05 -0500 |
commit | fc6e8a4db8eb0f07a4ca5f1984576a1281d3486c (patch) | |
tree | eed2cb66f430cdb11b575ff514d7d766e37ce51b | |
parent | 340d8535851e4cf878da7992a491c1ecc6113d44 (diff) | |
parent | f3260129ade2a88cfc5a61b115dbc792eec9bc5b (diff) | |
download | rneovim-fc6e8a4db8eb0f07a4ca5f1984576a1281d3486c.tar.gz rneovim-fc6e8a4db8eb0f07a4ca5f1984576a1281d3486c.tar.bz2 rneovim-fc6e8a4db8eb0f07a4ca5f1984576a1281d3486c.zip |
Merge pull request #9435 from jamessan/tui-konsole
TUI: Konsole DECSCUSR fixup (#9423)
-rw-r--r-- | src/nvim/tui/tui.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index d1e456f185..ecfdeaeda3 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -1675,8 +1675,7 @@ static void patch_terminfo_bugs(TUIData *data, const char *term, } // Blacklist of terminals that cannot be trusted to report DECSCUSR support. - if (!(st || (vte_version != 0 && vte_version < 3900) - || (konsolev > 0 && konsolev < 180770))) { + if (!(st || (vte_version != 0 && vte_version < 3900) || konsolev)) { data->unibi_ext.reset_cursor_style = unibi_find_ext_str(ut, "Se"); data->unibi_ext.set_cursor_style = unibi_find_ext_str(ut, "Ss"); } |