neatvi

[fork] simple vi-type editor with UTF-8 support
git clone git://src.adamsgaard.dk/neatvi # fast
git clone https://src.adamsgaard.dk/neatvi.git # slow
Log | Files | Refs | README Back to index

commit df9f5a424f9e869ce1367f3c9ee3ceee84683f9f
parent 3846d47a04c5febd2c81aa1668832f56960f1617
Author: Ali Gholami Rudi <ali@rudi.ir>
Date:   Sat,  7 May 2016 20:51:15 +0430

vi: repeating . and @ commands

Diffstat:
Mvi.c | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/vi.c b/vi.c @@ -1021,7 +1021,9 @@ static int rep_len; static void vc_repeat(void) { - term_push(rep_cmd, rep_len); + int i; + for (i = 0; i < MAX(1, vi_arg1); i++) + term_push(rep_cmd, rep_len); } static void vc_execute(void) @@ -1030,6 +1032,7 @@ static void vc_execute(void) int lnmode; int c = vi_read(); char *buf; + int i; if (TK_INT(c)) return; if (c == '@') @@ -1037,7 +1040,8 @@ static void vc_execute(void) exec_buf = c; buf = reg_get(exec_buf, &lnmode); if (buf) - term_push(buf, strlen(buf)); + for (i = 0; i < MAX(1, vi_arg1); i++) + term_push(buf, strlen(buf)); } static void vi(void)