Mercurial > vim
view src/tee/Makefile @ 20673:0ebd431a2256 v8.2.0890
patch 8.2.0890: no color in terminal window when 'termguicolor' is set
Commit: https://github.com/vim/vim/commit/1e5f8f6d65b2ecff3d93d9fdbdd17c7a2ab9cc3d
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jun 2 23:18:24 2020 +0200
patch 8.2.0890: no color in terminal window when 'termguicolor' is set
Problem: No color in terminal window when 'termguicolor' is set.
Solution: Clear the underline color. (closes https://github.com/vim/vim/issues/6186)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 02 Jun 2020 23:30:04 +0200 |
parents | d148cd1163a5 |
children | c2fbac867d9c |
line wrap: on
line source
# A very (if not the most) simplistic Makefile for MS-Windows and OS/2 CC=gcc CFLAGS=-O2 -fno-strength-reduce ifneq (sh.exe, $(SHELL)) DEL = rm else DEL = del endif tee.exe: tee.o $(CC) $(CFLAGS) -s -o $@ $< tee.o: tee.c $(CC) $(CFLAGS) -c $< clean: - $(DEL) tee.o - $(DEL) tee.exe