Edit functionality no loger relies on sub-process receiving parent ENV.

This commit is contained in:
Jonathan Bernard 2020-11-12 10:42:00 -06:00
parent 3a4905ff6c
commit 136e0ade02
3 changed files with 4 additions and 3 deletions

View File

@ -1 +1 @@
const PTK_VERSION* = "1.0.7"
const PTK_VERSION* = "1.0.8"

View File

@ -149,7 +149,8 @@ proc edit(mark: Mark): Mark =
close(tempFile)
tempFile = nil
discard os.execShellCmd "$EDITOR " & tempFileName & " </dev/tty >/dev/tty"
let editor = getEnv("EDITOR", "vim")
discard os.execShellCmd editor & " " & tempFileName & " </dev/tty >/dev/tty"
var markPart = Time
var notes: seq[string] = @[]

View File

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