refactor(messages): rename msg_trunc_attr and msg_multiline_attr without attr

This commit is contained in:
bfredl
2023-09-27 22:24:50 +02:00
parent b85f1dafc7
commit 448d4837be
7 changed files with 16 additions and 16 deletions

View File

@@ -3791,11 +3791,11 @@ void find_pattern_in_path(char *ptr, Direction dir, size_t len, bool whole, bool
files[depth].lnum = 0;
files[depth].matched = false;
if (action == ACTION_EXPAND) {
msg_hist_off = true; // reset in msg_trunc_attr()
msg_hist_off = true; // reset in msg_trunc()
vim_snprintf(IObuff, IOSIZE,
_("Scanning included file: %s"),
new_fname);
msg_trunc_attr(IObuff, true, HL_ATTR(HLF_R));
msg_trunc(IObuff, true, HL_ATTR(HLF_R));
} else if (p_verbose >= 5) {
verbose_enter();
smsg(_("Searching included file %s"), new_fname);