diff options
-rw-r--r-- | src/nvim/fileio.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 9c64be6d0c..873c15ff4a 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -700,16 +700,9 @@ readfile ( wasempty = (curbuf->b_ml.ml_flags & ML_EMPTY); if (!recoverymode && !filtering && !(flags & READ_DUMMY)) { - /* - * Show the user that we are busy reading the input. Sometimes this - * may take a while. When reading from stdin another program may - * still be running, don't move the cursor to the last line, unless - * always using the GUI. - */ - if (read_stdin) { - mch_msg(_("Nvim: Reading from stdin...\n")); - } else if (!read_buffer) + if (!read_stdin && !read_buffer) { filemess(curbuf, sfname, (char_u *)"", 0); + } } msg_scroll = FALSE; /* overwrite the file message */ |