aboutsummaryrefslogtreecommitdiff
path: root/bin/td
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-18 11:09:47 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-18 11:09:47 +1200
commit00c3c1f3b1221e5dc2d57b53daef7eb1b0f09858 (patch)
treef9dc59e014ee712aa2fd84b08ce7710493c3e26e /bin/td
parentFix up some command builtin calls (diff)
downloaddotfiles-00c3c1f3b1221e5dc2d57b53daef7eb1b0f09858.tar.gz
dotfiles-00c3c1f3b1221e5dc2d57b53daef7eb1b0f09858.zip
Arrange EDITOR/VISUAL in a more typical way
Diffstat (limited to 'bin/td')
-rwxr-xr-xbin/td4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/td b/bin/td
index e6cbfd93..5088f572 100755
--- a/bin/td
+++ b/bin/td
@@ -21,8 +21,8 @@ isgr || git init || exit
# If the to-do file doesn't exist yet, create it
[ -e "$file" ] || touch -- "$file" || exit
-# Launch $VISUAL (or $EDITOR (or vi(1))) to edit the appropriate to-do file
-"${VISUAL:-"${EDITOR:-vi}"}" "$file"
+# Launch an appropriate editor to edit that file
+"${VISUAL:-"${EDITOR:-ed}"}" "$file"
# Add the file to the changeset
git add -- "$file"