From 6ab23c7c8470218a8e028257c31c72e0a279ad11 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Thu, 12 Nov 2020 14:44:31 -0600 Subject: [PATCH] Remove tags option actually removes tags now. --- private/version.nim | 2 +- ptk.nim | 11 +++++------ ptk.nimble | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/private/version.nim b/private/version.nim index 253b541..13315fe 100644 --- a/private/version.nim +++ b/private/version.nim @@ -1 +1 @@ -const PTK_VERSION* = "1.0.8" \ No newline at end of file +const PTK_VERSION* = "1.0.9" \ No newline at end of file diff --git a/ptk.nim b/ptk.nim index 7cdd548..4b40021 100644 --- a/ptk.nim +++ b/ptk.nim @@ -4,7 +4,7 @@ ## Simple time keeping CLI import algorithm, docopt, json, langutils, logging, os, nre, std/wordwrap, - sequtils, sets, strutils, tempfile, terminal, times, uuids + sequtils, sets, strutils, sugar, tempfile, terminal, times, uuids import timeutils except `-` @@ -43,8 +43,7 @@ proc writeMarks(timeline: Timeline, indices: seq[int], includeNotes = false): vo writeLine(stdout, "No marks match the given criteria.") return - var idxs = indices.sorted( - proc(a, b: int): int = cmp(marks[a].time, marks[b].time)) + var idxs = indices.sorted((a, b) => cmp(marks[a].time, marks[b].time)) let largestInterval = now - marks[idxs.first].time let timeFormat = @@ -279,8 +278,9 @@ Options: -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-tags Remove the given tag from the selected marks. + -G --remove-tags Remove the given tag from the selected marks. -h --help Print this usage information. + -m --matching Restric the selection to marks matching . -n --notes For add and amend, set the notes for a time mark. -t --time