summaryrefslogtreecommitdiffstats
path: root/create
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2015-12-16 20:41:33 -0700
committerAnthony Fok <foka@debian.org>2015-12-16 21:26:51 -0700
commit3574304c686af07991c970c89c0b77a1135359db (patch)
tree9357d44f07c44d31a908b64f702bc7a87ecb7d32 /create
parent9c39593dee7d0cf02a5249b1711992a1eb94b1aa (diff)
Improve some random feedback messages
Also clean up a couple random comments.
Diffstat (limited to 'create')
-rw-r--r--create/content.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/create/content.go b/create/content.go
index e56c5c951..3607e0139 100644
--- a/create/content.go
+++ b/create/content.go
@@ -113,7 +113,7 @@ func NewContent(kind, name string) (err error) {
editor := viper.GetString("NewContentEditor")
if editor != "" {
- jww.FEEDBACK.Printf("Editing %s in %s.\n", name, editor)
+ jww.FEEDBACK.Printf("Editing %s with %q ...\n", name, editor)
cmd := exec.Command(editor, helpers.AbsPathify(path.Join(viper.GetString("contentDir"), name)))
cmd.Stdin = os.Stdin