From e765721a9d2cafd0370d28ea9f3321a475528d54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Tue, 21 Apr 2015 15:02:42 +0200 Subject: Make '.' respect count --- vis.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'vis.c') diff --git a/vis.c b/vis.c index fd6910d..6e6f15c 100644 --- a/vis.c +++ b/vis.c @@ -763,7 +763,10 @@ static void suspend(const Arg *arg) { } static void repeat(const Arg *arg) { + int count = vis->action.count; vis->action = vis->action_prev; + if (count) + vis->action.count = count; action_do(&vis->action); } -- cgit v1.2.3