From 0a8d2996dcb3cd3ebf55b783b08667fa3740433b Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 21 Oct 2016 19:35:59 +0900 Subject: Set foreground color without affecting background Close #712 --- src/options.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/options.go') diff --git a/src/options.go b/src/options.go index a7f01887..c5e6d7b7 100644 --- a/src/options.go +++ b/src/options.go @@ -499,10 +499,8 @@ func parseTheme(defaultTheme *curses.ColorTheme, str string) *curses.ColorTheme switch pair[0] { case "fg": theme.Fg = ansi - theme.UseDefault = theme.UseDefault && ansi < 0 case "bg": theme.Bg = ansi - theme.UseDefault = theme.UseDefault && ansi < 0 case "fg+": theme.Current = ansi case "bg+": -- cgit v1.2.3