diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2019-03-17 15:37:23 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2019-03-17 15:52:38 +0900 |
| commit | 2157f4f1933ac289976f42a4e347f444857ba18f (patch) | |
| tree | d713453268bf9505726836720aac24a596ea205c /src/options.go | |
| parent | 309bae423c9f699bde7bcbae1898ebc249a7e74a (diff) | |
| download | fzf-2157f4f1933ac289976f42a4e347f444857ba18f.tar.gz | |
Add color option for gutter
fzf --color gutter:-1
Close #1529
Close #1468
Diffstat (limited to 'src/options.go')
| -rw-r--r-- | src/options.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/options.go b/src/options.go index fc32344c..f5382598 100644 --- a/src/options.go +++ b/src/options.go @@ -576,6 +576,8 @@ func parseTheme(defaultTheme *tui.ColorTheme, str string) *tui.ColorTheme { theme.Current = ansi case "bg+": theme.DarkBg = ansi + case "gutter": + theme.Gutter = ansi case "hl": theme.Match = ansi case "hl+": |
