diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vi.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/editors/vi.c b/editors/vi.c index a38f218..7de55d1 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -4010,6 +4010,14 @@ static void do_cmd(int c) } else { editing = 0; } + // are there other files to edit? + j = cmdline_filecnt - optind - 1; + if (editing == 0 && j > 0) { + editing = 1; + modified_count = 0; + last_modified_count = -1; + status_line_bold("%u more file(s) to edit", j); + } break; case '^': // ^- move to first non-blank on line dot_begin(); |