Reset terminal attributes after printing single issues.

This commit is contained in:
Jonathan Bernard 2021-02-01 07:41:01 -06:00
parent 393be347c9
commit 98f4dda1ad
3 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Package
version = "4.11.0"
version = "4.11.1"
author = "Jonathan Bernard"
description = "Personal issue tracker."
license = "MIT"

View File

@ -70,6 +70,8 @@ proc formatIssue(ctx: CliContext, issue: Issue): string =
if not issue.details.isEmptyOrWhitespace:
result &= issue.details.strip.withColor(fgCyan) & "\n"
result &= termReset
proc formatSectionIssue(ctx: CliContext, issue: Issue, width: int, indent = "",
verbose = false): string =

View File

@ -1 +1 @@
const PIT_VERSION* = "4.11.0"
const PIT_VERSION* = "4.11.1"