summaryrefslogtreecommitdiffstats
path: root/pkg/gui/presentation
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-02-05 17:04:10 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-03-17 19:13:40 +1100
commitd82f175e79f18756769d91de94458b095130297c (patch)
tree63c0c5b17a698a5a202a85b930edd0cf9e85ebf7 /pkg/gui/presentation
parent145c69d9ae32ec8fbdd6d1e6116efec466a0a709 (diff)
refactor contexts
Diffstat (limited to 'pkg/gui/presentation')
-rw-r--r--pkg/gui/presentation/menu.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg/gui/presentation/menu.go b/pkg/gui/presentation/menu.go
new file mode 100644
index 000000000..c43896c22
--- /dev/null
+++ b/pkg/gui/presentation/menu.go
@@ -0,0 +1,7 @@
+package presentation
+
+import "github.com/jesseduffield/lazygit/pkg/gui/style"
+
+func OpensMenuStyle(str string) string {
+ return style.FgMagenta.Sprintf("%s...", str)
+}