diff --git a/ptk.nim b/ptk.nim index 9216d30..085c311 100644 --- a/ptk.nim +++ b/ptk.nim @@ -123,7 +123,14 @@ proc writeMarks(marks: seq[Mark], includeNotes = false): void = setForegroundColor(stdout, fgCyan) write(stdout, " (" & duration & ")") resetAttributes(stdout) - writeLine(stdout, spaces(longestPrefix - prefixLens[i]) & " -- " & mark.summary) + write(stdout, spaces(longestPrefix - prefixLens[i]) & " -- " & mark.summary) + + if mark.tags.len > 0: + setForegroundColor(stdout, fgGreen) + write(stdout, " (" & mark.tags.join(", ") & ")") + resetAttributes(stdout) + + writeLine(stdout, "") if includeNotes and len(mark.notes.strip) > 0: writeLine(stdout, spaces(longestPrefix) & mark.notes) @@ -172,6 +179,8 @@ proc doInit(timelineLocation: string): void = timelineFile.write($timeline.pretty) finally: close(timelineFile) +type ExpectedMarkPart = enum Time, Summary, Tags, Notes + proc edit(mark: var Mark): void = var tempFile: File @@ -180,10 +189,11 @@ proc edit(mark: var Mark): void = try: (tempFile, tempFileName) = mkstemp("timestamp-mark-", ".txt", "", fmWrite) tempFile.writeLine( - """# Edit the time, mark, and notes below. Any lines starting with '#' will be -# ignored. When done, save the file and close the editor.""") + """# Edit the time, mark, tags, and notes below. Any lines starting with '#' will +# be ignored. When done, save the file and close the editor.""") tempFile.writeLine(mark.time.format(ISO_TIME_FORMAT)) tempFile.writeLine(mark.summary) + tempFile.writeLine(mark.tags.join(",")) tempFile.writeLine( """# Everything from the line below to the end of the file will be considered # notes for this timeline mark.""") @@ -192,15 +202,16 @@ proc edit(mark: var Mark): void = discard os.execShellCmd "$EDITOR " & tempFileName & " /dev/tty" - var - readTime = false - readSummary = false + var markPart = Time for line in lines tempFileName: if strip(line)[0] == '#': continue - elif not readTime: mark.time = parseTime(line); readTime = true - elif not readSummary: mark.summary = line; readSummary = true - else: mark.notes &= line + elif markPart == Time: mark.time = parseTime(line); markPart = Summary + elif markPart == Summary: mark.summary = line; markPart = Tags + elif markPart == Tags: + mark.tags = line.split({',', ';'}); + markPart = Notes + else: mark.notes &= line & "\x0D\x0A" finally: close(tempFile) @@ -211,11 +222,11 @@ Usage: ptk init [options] ptk add [options] ptk add [options] - ptk ammend [options] [] + ptk amend [options] [] ptk stop [options] ptk continue ptk delete - ptk list [options] + ptk (list | ls) [options] ptk sum-time --ids ... ptk sum-time [options] [] [] ptk (-V | --version) @@ -230,11 +241,11 @@ Options: -c --config Use as configuration for the CLI. -e --edit Open the mark in an editor. -f --file Use the given timeline file. - -g --tags Add the given tags (comma-separated) to the selected marks. - -G --remove-tag Remove the given tag from the selected marks. + -g --tags Add the given tags (comma-separated) to the selected marks. + -G --remove-tags Remove the given tag from the selected marks. -h --help Print this usage information. - -n --notes For add and ammend, set the notes for a time mark. - -t --time