1
0
forked from aniani/vim

patch 8.2.4008: error messages are spread out

Problem:    Error messages are spread out.
Solution:   Move more error messages to errors.h.
This commit is contained in:
Bram Moolenaar
2022-01-05 16:09:06 +00:00
parent 8e7d9db32b
commit 677658ae49
28 changed files with 187 additions and 76 deletions

View File

@@ -2864,7 +2864,7 @@ f_complete(typval_T *argvars, typval_T *rettv UNUSED)
if ((State & INSERT) == 0)
{
emsg(_("E785: complete() can only be used in Insert mode"));
emsg(_(e_complete_can_only_be_used_in_insert_mode));
return;
}