Make -m case insensitive.

This commit is contained in:
Jonathan Bernard 2018-04-30 11:05:46 -05:00
parent e5c6e6187c
commit 75f74c3a0a
2 changed files with 3 additions and 3 deletions

View File

@ -357,7 +357,7 @@ proc filterMarkIndices(timeline: Timeline, args: Table[string, Value]): seq[int]
selected = selected.filterMarks(not tags.allIt(marks[mIdx].tags.contains(it)))
if args["--matching"]:
let pattern = re(args["--matching"] ?: "")
let pattern = re("(?i)" & $(args["--matching"] ?: ""))
selected = selected.filterMarks(marks[mIdx].summary.find(pattern).isSome)
return sequtils.toSeq(selected.items).sorted(system.cmp)
@ -413,7 +413,7 @@ Options:
let now = getTime().local
# Parse arguments
let args = docopt(doc, version = "ptk 0.12.0")
let args = docopt(doc, version = "ptk 0.12.1")
if args["--echo-args"]: echo $args

View File

@ -1,6 +1,6 @@
# Package
version = "0.12.0"
version = "0.12.1"
author = "Jonathan Bernard"
description = "Personal Time Keeper"
license = "MIT"