summaryrefslogtreecommitdiffstats
path: root/pkg/utils
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-03-28 16:28:35 +1100
committerJesse Duffield <jessedduffield@gmail.com>2020-03-29 11:37:29 +1100
commit624ae45ebb3f54499a25c4eba0844fa971277c34 (patch)
treeca20f93742858b2b4231d083e5b6abdab61d69ba /pkg/utils
parent2756b82f5733c2099c43279ebb1a962101411142 (diff)
allow scoped mode where the commits/reflog/stash panels are scoped to a file
WIP restrict certain actions in scoped mode WIP
Diffstat (limited to 'pkg/utils')
-rw-r--r--pkg/utils/utils.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go
index 4afee73b7..2e17527aa 100644
--- a/pkg/utils/utils.go
+++ b/pkg/utils/utils.go
@@ -39,8 +39,8 @@ func WithPadding(str string, padding int) string {
// ColoredString takes a string and a colour attribute and returns a colored
// string with that attribute
-func ColoredString(str string, colorAttribute color.Attribute) string {
- colour := color.New(colorAttribute)
+func ColoredString(str string, colorAttributes ...color.Attribute) string {
+ colour := color.New(colorAttributes...)
return ColoredStringDirect(str, colour)
}