hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 45a74ae08187a0748b34217ce04c634bd48d3f79
parent 42c99d782d55c0b39f37fbc1b9138b28227696d2
Author: Alexey Yerin <yyp@disroot.org>
Date:   Mon, 30 Aug 2021 22:06:22 +0300

cmd/haredoc/tty: make comments bold instead of gray

Signed-off-by: Alexey Yerin <yyp@disroot.org>

Diffstat:
Mcmd/haredoc/tty.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/haredoc/tty.ha b/cmd/haredoc/tty.ha @@ -29,7 +29,7 @@ fn details_tty(decl: ast::decl) (void | error) = { const iter = strings::tokenize(decl.docs, "\n"); for (true) match (strings::next_token(&iter)) { s: str => if (len(s) != 0) { - fmt::printfln("\x1b[38;5;246m" "//{}" "\x1b[0m", s)?; + fmt::printfln("\x1b[1m" "//{}" "\x1b[0m", s)?; }, void => break, };