mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
TUI: TERM=nsterm
Treat TERM=nsterm the same way in augment_terminfo() and
patch_terminfo_bugs().
ref #9244 463d28cc80
This commit is contained in:
@@ -1755,7 +1755,9 @@ static void augment_terminfo(TUIData *data, const char *term,
|
|||||||
long konsolev, bool iterm_env)
|
long konsolev, bool iterm_env)
|
||||||
{
|
{
|
||||||
unibi_term *ut = data->ut;
|
unibi_term *ut = data->ut;
|
||||||
bool xterm = terminfo_is_term_family(term, "xterm");
|
bool xterm = terminfo_is_term_family(term, "xterm")
|
||||||
|
// Treat Terminal.app as generic xterm-like, for now.
|
||||||
|
|| terminfo_is_term_family(term, "nsterm");
|
||||||
bool bsdvt = terminfo_is_bsd_console(term);
|
bool bsdvt = terminfo_is_bsd_console(term);
|
||||||
bool dtterm = terminfo_is_term_family(term, "dtterm");
|
bool dtterm = terminfo_is_term_family(term, "dtterm");
|
||||||
bool rxvt = terminfo_is_term_family(term, "rxvt");
|
bool rxvt = terminfo_is_term_family(term, "rxvt");
|
||||||
|
Reference in New Issue
Block a user