Skip to content

Commit

Permalink
Helo: correctly display italic text
Browse files Browse the repository at this point in the history
  • Loading branch information
CarterLi committed Nov 20, 2023
1 parent 1dec514 commit fa90e01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fastfetch.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ static void printFullHelp()
bool optional = optionalKey && yyjson_get_bool(optionalKey);
putchar(' ');
if (!instance.config.display.pipe)
fputs("\e[4m", stdout);
fputs("\e[3m", stdout);
printf("<%s%s>", optional ? "?" : "", yyjson_get_str(typeKey));
if (!instance.config.display.pipe)
fputs("\e[m", stdout);
Expand Down

0 comments on commit fa90e01

Please sign in to comment.