From 9f19e8d29dcece387d0aec1dc8c96995276ba61f Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Wed, 2 Jan 2019 22:31:03 +0100 Subject: TUI: Do not disable BCE for builtin terminfos (#9443) Remove this vestigial hack from #7624. Since 5a0d0286ff4d we blacklist BCE more surgically. And patch_terminfo_bugs() is the more appropriate place for that. ref 5749ecaf228f4a963a4e96ada831f902c73a1e80 ref #4210 #4421 #7035 #7337 #7381 #7425 #7618 --- src/nvim/tui/terminfo.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/nvim/tui/terminfo.c b/src/nvim/tui/terminfo.c index 27792655c9..14023ce2cb 100644 --- a/src/nvim/tui/terminfo.c +++ b/src/nvim/tui/terminfo.c @@ -137,9 +137,6 @@ unibi_term *terminfo_from_builtin(const char *term, char **termname) if (*termname == NULL) { *termname = xstrdup("builtin_?"); } - // Disable BCE by default (for built-in terminfos). #7624 - // https://github.com/kovidgoyal/kitty/issues/160#issuecomment-346470545 - unibi_set_bool(ut, unibi_back_color_erase, false); return ut; } -- cgit