vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit f515c64788dbbcae0af663bb271cbba301caf0bf parent b73f041f9792d989025b4115c11d15a5c319b1b5 Author: Michael Reed <m.reed@mykolab.com> Date: Sat, 9 Jan 2016 03:38:32 -0500 vis-open: Print error message to stderr Diffstat:
| M | vis-open | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vis-open b/vis-open @@ -26,7 +26,7 @@ if ! type "$VIS_MENU" >/dev/null 2>&1; then if [ ! -z "$DISPLAY" ] && type "dmenu" >/dev/null 2>&1; then VIS_MENU="dmenu" else - echo "Neither slmenu nor dmenu found" + echo "Neither slmenu nor dmenu found" >&2 exit 1 fi fi