vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 5a7de1943e12a6193e554f5aecb216e1a03abf38 parent 92c787359504ddf07ae9e423c5cce4b4298b0e37 Author: Marc André Tanner <mat@brain-dump.org> Date: Fri, 15 Apr 2016 16:38:31 +0200 vis: fix wrong usage message for :unmap command Diffstat:
| M | vis-cmds.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vis-cmds.c b/vis-cmds.c @@ -646,7 +646,7 @@ static bool cmd_unmap(Vis *vis, Win *win, Command *cmd, const char *argv[], Curs const char *lhs = argv[2]; if (mode == VIS_MODE_INVALID || !lhs) { - vis_info_show(vis, "usage: unmap mode lhs rhs\n"); + vis_info_show(vis, "usage: unmap mode lhs\n"); return false; }