aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/tag.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-09-29 20:07:16 +0200
committerGitHub <noreply@github.com>2023-09-29 20:07:16 +0200
commitbe463e7643fb65c49a9a13bd5a1c6fb6ac34ae77 (patch)
tree33ffeaee48b3895c0cca615476a027a27c780cfc /src/nvim/tag.c
parent54daf022ce989bb8ea34084f947ab85c045b690f (diff)
parentbc13bc154aa574e0bb58a50f2e0ca4570efa57c3 (diff)
downloadrneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.tar.gz
rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.tar.bz2
rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.zip
Merge pull request #25418 from bfredl/no_attr2
refactor(message): remove more "attr" variants
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r--src/nvim/tag.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c
index c21b3a850b..a95b104027 100644
--- a/src/nvim/tag.c
+++ b/src/nvim/tag.c
@@ -719,7 +719,7 @@ void do_tag(char *tag, int type, int count, int forceit, int verbose)
// Only when going to try the next match, report that the previous
// file didn't exist. Otherwise an emsg() is given below.
if (nofile_fname != NULL && error_cur_match != cur_match) {
- smsg(_("File \"%s\" does not exist"), nofile_fname);
+ smsg(0, _("File \"%s\" does not exist"), nofile_fname);
}
ic = (matches[cur_match][0] & MT_IC_OFF);
@@ -2211,7 +2211,7 @@ static void findtags_in_file(findtags_state_T *st, int flags, char *buf_ffname)
if (p_verbose >= 5) {
verbose_enter();
- smsg(_("Searching tags file %s"), st->tag_fname);
+ smsg(0, _("Searching tags file %s"), st->tag_fname);
verbose_leave();
}
st->did_open = true; // remember that we found at least one file
@@ -3279,7 +3279,7 @@ static int add_tag_field(dict_T *dict, const char *field_name, const char *start
if (tv_dict_find(dict, field_name, -1) != NULL) {
if (p_verbose > 0) {
verbose_enter();
- smsg(_("Duplicate field name: %s"), field_name);
+ smsg(0, _("Duplicate field name: %s"), field_name);
verbose_leave();
}
return FAIL;