Update to nim 2.2.8, cliutils 0.11.1

This commit is contained in:
2026-03-09 13:30:55 -05:00
parent e35bd9f85a
commit a273091dc7
6 changed files with 67 additions and 65 deletions

View File

@@ -92,8 +92,8 @@ proc addIssue(
"Do you want to set a value for '" & propName & "'? " &
"You can use the numbers above to use an existing value, enter " &
"something new, or leave blank to indicate no value.\p" &
withColor(propName, fgMagenta) & ":" &
withColor(" ", fgBlue, bright=true, skipReset=true))
color(propName, fg=cMagenta) & ":" &
ansiEscSeq(fg=cBrightBlue) & " ")
let resp = stdin.readLine.strip
let numberResp = resp.match(numberRegex)
@@ -106,7 +106,7 @@ proc addIssue(
elif resp.len > 0:
issueProps[propName] = resp
stdout.writeLine(termReset)
stdout.writeLine(RESET_FORMATTING)
result = Issue(
id: genUUID(),