mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Remove FEAT_TITLE
'title' and 'icon' options
This commit is contained in:
parent
1299d08be7
commit
76066e56fc
@ -142,7 +142,6 @@
|
|||||||
#define FEAT_TAG_OLDSTATIC
|
#define FEAT_TAG_OLDSTATIC
|
||||||
#define FEAT_TERMRESPONSE
|
#define FEAT_TERMRESPONSE
|
||||||
#define FEAT_TEXTOBJ
|
#define FEAT_TEXTOBJ
|
||||||
#define FEAT_TITLE
|
|
||||||
#define FEAT_USR_CMDS
|
#define FEAT_USR_CMDS
|
||||||
#define FEAT_VERTSPLIT
|
#define FEAT_VERTSPLIT
|
||||||
#define FEAT_VIMINFO
|
#define FEAT_VIMINFO
|
||||||
|
@ -2082,8 +2082,6 @@ static void out_char_nf(unsigned c)
|
|||||||
out_flush();
|
out_flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \
|
|
||||||
|| defined(FEAT_TERMRESPONSE) || defined(PROTO)
|
|
||||||
/*
|
/*
|
||||||
* A never-padding out_str.
|
* A never-padding out_str.
|
||||||
* use this whenever you don't want to run the string through tputs.
|
* use this whenever you don't want to run the string through tputs.
|
||||||
@ -2104,7 +2102,6 @@ void out_str_nf(char_u *s)
|
|||||||
if (p_wd)
|
if (p_wd)
|
||||||
out_flush();
|
out_flush();
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* out_str(s): Put a character string a byte at a time into the output buffer.
|
* out_str(s): Put a character string a byte at a time into the output buffer.
|
||||||
@ -2219,8 +2216,7 @@ static void term_color(char_u *s, int n)
|
|||||||
OUT_STR(tgoto((char *)s, 0, n));
|
OUT_STR(tgoto((char *)s, 0, n));
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined(FEAT_TITLE) && (defined(UNIX) || \
|
#if defined(UNIX) || defined(MACOS_X) || defined(PROTO)
|
||||||
defined(MACOS_X))) || defined(PROTO)
|
|
||||||
/*
|
/*
|
||||||
* Generic function to set window title, using t_ts and t_fs.
|
* Generic function to set window title, using t_ts and t_fs.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user