mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
screen: Fix highlight reset for abstract_ui
This commit is contained in:
parent
3e9c55b51b
commit
6f7db326cb
@ -5971,7 +5971,7 @@ void screen_stop_highlight(void)
|
|||||||
*/
|
*/
|
||||||
void reset_cterm_colors(void)
|
void reset_cterm_colors(void)
|
||||||
{
|
{
|
||||||
if (t_colors > 1) {
|
if (!abstract_ui && t_colors > 1) {
|
||||||
/* set Normal cterm colors */
|
/* set Normal cterm colors */
|
||||||
if (cterm_normal_fg_color > 0 || cterm_normal_bg_color > 0) {
|
if (cterm_normal_fg_color > 0 || cterm_normal_bg_color > 0) {
|
||||||
out_str(T_OP);
|
out_str(T_OP);
|
||||||
|
Loading…
Reference in New Issue
Block a user