about summary refs log tree commit diff
path: root/pkgs/aszlig/gopass/use-color-in-pager.patch
blob: 52ea8801f141ef4db7f158a847a5299a9e1a6b86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/action/list.go b/action/list.go
index c5d2ae0..715ce65 100644
--- a/action/list.go
+++ b/action/list.go
@@ -9,7 +9,6 @@ import (
 	"os/exec"
 	"strings"
 
-	"github.com/fatih/color"
 	"github.com/justwatchcom/gopass/utils/ctxutil"
 	"github.com/justwatchcom/gopass/utils/out"
 	"github.com/justwatchcom/gopass/utils/termutil"
@@ -84,7 +83,6 @@ func redirectPager(ctx context.Context, subtree tree.Tree) (io.Writer, *bytes.Bu
 	if subtree == nil || subtree.Len() < rows {
 		return stdout, nil
 	}
-	color.NoColor = true
 	buf := &bytes.Buffer{}
 	return buf, buf
 }