Remove display_erros()

do_shell() in Nvim uses the Nvim UI, not the tty directly, so
display_errors() is not necessary anymore.
This commit is contained in:
erw7
2019-06-04 09:06:35 +09:00
parent f66ffc64f6
commit 2d6e440877
2 changed files with 0 additions and 4 deletions

View File

@@ -1391,9 +1391,6 @@ do_shell(
msg_row = Rows - 1;
msg_col = 0;
// display any error messages now
display_errors();
apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
}