From 1ceb5a6b37a4a1c6e98cb9c0c8c401dc2222099f Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Sun, 15 Sep 2024 14:08:56 +0200 Subject: [PATCH] Turn on AutoRenderHyperLinks in the Command Log panel Some commands output hyperlinks, and it's useful to be able to click them. --- pkg/gui/views.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/gui/views.go b/pkg/gui/views.go index f561eac37..839fe15fc 100644 --- a/pkg/gui/views.go +++ b/pkg/gui/views.go @@ -171,6 +171,7 @@ func (gui *Gui) createAllViews() error { gui.Views.Extras.Title = gui.c.Tr.CommandLog gui.Views.Extras.Autoscroll = true gui.Views.Extras.Wrap = true + gui.Views.Extras.AutoRenderHyperLinks = true gui.Views.Snake.Title = gui.c.Tr.SnakeTitle gui.Views.Snake.FgColor = gocui.ColorGreen