Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
78480dc61c | |||
fb652eee30 | |||
a1333db427 |
@ -1 +1 @@
|
||||
const PTK_VERSION* = "1.0.1"
|
||||
const PTK_VERSION* = "1.0.4"
|
21
ptk.nim
21
ptk.nim
@ -123,10 +123,12 @@ proc doInit(timelineLocation: string): void =
|
||||
|
||||
type ExpectedMarkPart = enum Time, Summary, Tags, Notes
|
||||
|
||||
proc edit(mark: var Mark): void =
|
||||
proc edit(mark: Mark): Mark =
|
||||
## Interactively edit a mark using the editor named in the environment
|
||||
## variable "EDITOR"
|
||||
|
||||
result = mark
|
||||
|
||||
var
|
||||
tempFile: File
|
||||
tempFileName: string
|
||||
@ -142,8 +144,10 @@ proc edit(mark: var Mark): void =
|
||||
tempFile.writeLine(
|
||||
"""# Everything from the line below to the end of the file will be considered
|
||||
# notes for this timeline mark.""")
|
||||
tempFile.write(mark.notes)
|
||||
|
||||
close(tempFile)
|
||||
tempFile = nil
|
||||
|
||||
discard os.execShellCmd "$EDITOR " & tempFileName & " </dev/tty >/dev/tty"
|
||||
|
||||
@ -151,12 +155,13 @@ proc edit(mark: var Mark): void =
|
||||
|
||||
for line in lines tempFileName:
|
||||
if strip(line)[0] == '#': continue
|
||||
elif markPart == Time: mark.time = parseTime(line); markPart = Summary
|
||||
elif markPart == Summary: mark.summary = line; markPart = Tags
|
||||
elif markPart == Time: result.time = parseTime(line); markPart = Summary
|
||||
elif markPart == Summary: result.summary = line; markPart = Tags
|
||||
elif markPart == Tags:
|
||||
mark.tags = line.split({',', ';'});
|
||||
result.tags = line.split({',', ';'});
|
||||
result.notes = ""
|
||||
markPart = Notes
|
||||
else: mark.notes &= line & "\x0D\x0A"
|
||||
else: result.notes &= line & "\x0D\x0A"
|
||||
|
||||
finally: close(tempFile)
|
||||
|
||||
@ -424,7 +429,7 @@ Options:
|
||||
notes: args["--notes"] ?: "",
|
||||
tags: (args["--tags"] ?: "").split({',', ';'}).filterIt(not it.isNilOrWhitespace))
|
||||
|
||||
if args["--edit"]: edit(newMark)
|
||||
if args["--edit"]: newMark = edit(newMark)
|
||||
|
||||
let prevLastIdx = timeline.marks.getLastIndex()
|
||||
timeline.marks.add(newMark)
|
||||
@ -454,7 +459,7 @@ Options:
|
||||
notes: markToResume.notes,
|
||||
tags: markToResume.tags)
|
||||
|
||||
if args["--edit"]: edit(newMark)
|
||||
if args["--edit"]: newMark = edit(newMark)
|
||||
|
||||
timeline.marks.add(newMark)
|
||||
timeline.writeMarks(
|
||||
@ -491,7 +496,7 @@ Options:
|
||||
except: raise newException(ValueError,
|
||||
"invalid value for --time: " & getCurrentExceptionMsg())
|
||||
|
||||
if args["--edit"]: edit(mark)
|
||||
if args["--edit"]: mark = edit(mark)
|
||||
|
||||
timeline.marks.delete(markIdx)
|
||||
timeline.marks.insert(mark, markIdx)
|
||||
|
@ -1,7 +1,6 @@
|
||||
# Package
|
||||
include "private/version.nim"
|
||||
|
||||
version = PTK_VERSION
|
||||
version = "1.0.4"
|
||||
author = "Jonathan Bernard"
|
||||
description = "Personal Time Keeper"
|
||||
license = "MIT"
|
||||
@ -19,5 +18,9 @@ requires @[
|
||||
"jester 0.4.1",
|
||||
"https://git.jdb-labs.com/jdb/nim-lang-utils.git",
|
||||
"https://git.jdb-labs.com/jdb/nim-cli-utils.git",
|
||||
"https://git.jdb-labs.com/jdb/nim-time-utils.git >= 0.5.2"
|
||||
"https://git.jdb-labs.com/jdb/nim-time-utils.git >= 0.5.2",
|
||||
"https://git.jdb-labs.com/jdb/update-nim-package-version"
|
||||
]
|
||||
|
||||
task updateVersion, "Update the version of this package.":
|
||||
exec "update_nim_package_version ptk 'private/version.nim'"
|
Reference in New Issue
Block a user