From 0257ca92b1e47e5028e2a55990398efd2907eb7a Mon Sep 17 00:00:00 2001 From: sloum Date: Tue, 19 May 2020 14:40:56 -0700 Subject: [PATCH] Adds clarification to man page and removes old comment --- bombadillo.1 | 2 +- client.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bombadillo.1 b/bombadillo.1 index 42f40df..bd5367e 100644 --- a/bombadillo.1 +++ b/bombadillo.1 @@ -233,7 +233,7 @@ The scheme that should be used when no scheme is present in a given URL. \fIgoph .TP .B geminiblocks -Determines how to treat preformatted text blocks in text/gemini documents. \fIblock\fP will show the contents of the block, \fIalt\fP will show any available alt text for the block, \fIboth\fP will show both the content and the alt text, and \fIneither\fP will show neither. +Determines how to treat preformatted text blocks in text/gemini documents. \fIblock\fP will show the contents of the block, \fIalt\fP will show any available alt text for the block, \fIboth\fP will show both the content and the alt text, and \fIneither\fP will show neither. Unlike other settings, a change to this value will require a fresh page load to see the change. .TP .B homeurl diff --git a/client.go b/client.go index 6ed3a95..cfd2e41 100644 --- a/client.go +++ b/client.go @@ -459,7 +459,7 @@ func (c *client) doCommandAs(action string, values []string) { } case "SEARCH": c.search(strings.Join(values, " "), "", "") - case "SET", "S": // TODO make the geminiblocks value work + case "SET", "S": if _, ok := c.Options[values[0]]; ok { val := strings.Join(values[1:], " ") if !validateOpt(values[0], val) {