if TERM contains 'xfce', sextants are go

pull/1297/head
nick black 4 years ago
parent 99ef8a02e5
commit 48f904c5dd
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -56,7 +56,7 @@ apply_term_heuristics(tinfo* ti, const char* termname){
// be RGB(0, 0, 0) (the default). we could also just set it, i guess.
ti->bg_collides_default = 0x1000000;
ti->sextants = true; // work since bugfix in 0.19.3
}else if(strstr(termname, "vte") || strstr(termname, "gnome")){
}else if(strstr(termname, "vte") || strstr(termname, "gnome") || strstr(termname, "xfce")){
ti->sextants = true; // VTE has long enjoyed good sextant support
}
// run a wcwidth() to guarantee libc Unicode 13 support

Loading…
Cancel
Save