diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-01-02 22:31:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-02 22:31:03 +0100 |
commit | 9f19e8d29dcece387d0aec1dc8c96995276ba61f (patch) | |
tree | 78c82dad1838b54bdd22fc50f775f80bd298a381 | |
parent | 5fba8159213e7821d16cdbea379cb49ac8a6ee74 (diff) | |
download | rneovim-9f19e8d29dcece387d0aec1dc8c96995276ba61f.tar.gz rneovim-9f19e8d29dcece387d0aec1dc8c96995276ba61f.tar.bz2 rneovim-9f19e8d29dcece387d0aec1dc8c96995276ba61f.zip |
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
-rw-r--r-- | src/nvim/tui/terminfo.c | 3 |
1 files changed, 0 insertions, 3 deletions
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; } |