astro

a POSIX shell compatible gemini client (mirror of https://github.com/blmayer/astro)
git clone https://git.clttr.info/astro.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 1c07db275106eb217b7de7f36f08d648a34580ea
parent 232c8225c65492d3cea0ae4fa61e799608ce2c87
Author: René Wagner <rwa@clttr.info>
Date:   Tue, 15 Aug 2023 19:23:36 +0200

fix formatting of list lines

Diffstat:
Mastro | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/astro b/astro @@ -106,7 +106,7 @@ sty_quote='\\033[2;3m ' sty_linkb='\\033[35m' sty_linkt=' => \\033[36;3m ' sty_listb='\\033[35;1m •' -sty_listt='\\033[0m' +sty_listt='\\033[0m ' EOF fi @@ -204,7 +204,7 @@ typesetgmi() { sty="$sty_linkb${linkcount}$sty_linkt" ;; - '* '*) sty="$sty_listt" && line="$sty_listb$sty_listt${line#* }";; + '* '*) sty="$sty_listb$sty_listt" && line="${line#* }";; *) sty="";; esac echo "$line" | fold -w "$width" -s | {