From e0789536674a25eeced8a12bd2fa17a1b6ef01a1 Mon Sep 17 00:00:00 2001 From: tploss Date: Tue, 12 Jul 2022 10:07:47 +0200 Subject: [PATCH] Remove exit message As already discussed in https://github.com/charmbracelet/glow/issues/329 the exit message can be a bit irritating, especially when integrating glow into scripts/etc. PR https://github.com/charmbracelet/glow/pull/331 did more than just remove the exit message but was since closed by the requestor. --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index 47424e4..5c605b2 100644 --- a/main.go +++ b/main.go @@ -353,8 +353,6 @@ func runTUI(workingDirectory string, stashedOnly bool) error { return err } - // Exit message - fmt.Printf("\n Thanks for using Glow!\n\n") return nil }