From 41a3af1a29deb979d24e12d56dd3ef52073d580d Mon Sep 17 00:00:00 2001 From: John Ku Date: Sun, 13 Dec 2015 19:37:32 -0800 Subject: [PATCH] Use absolute path when editing with editor Fixes #1589 --- create/content.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create/content.go b/create/content.go index 98be0e871..e56c5c951 100644 --- a/create/content.go +++ b/create/content.go @@ -115,7 +115,7 @@ func NewContent(kind, name string) (err error) { if editor != "" { jww.FEEDBACK.Printf("Editing %s in %s.\n", name, editor) - cmd := exec.Command(editor, path.Join(viper.GetString("contentDir"), name)) + cmd := exec.Command(editor, helpers.AbsPathify(path.Join(viper.GetString("contentDir"), name))) cmd.Stdin = os.Stdin cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr