diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-27 22:24:50 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-09-27 23:05:14 +0200 |
commit | 448d4837be7f7bd60ac0b5a3100c0217ac48a495 (patch) | |
tree | 9eb1707c0cae31a9d97569b5024e0c12ff72d449 /src/nvim/search.c | |
parent | b85f1dafc7c0a19704135617454f1c66f41202c1 (diff) | |
download | rneovim-448d4837be7f7bd60ac0b5a3100c0217ac48a495.tar.gz rneovim-448d4837be7f7bd60ac0b5a3100c0217ac48a495.tar.bz2 rneovim-448d4837be7f7bd60ac0b5a3100c0217ac48a495.zip |
refactor(messages): rename msg_trunc_attr and msg_multiline_attr without attr
Diffstat (limited to 'src/nvim/search.c')
-rw-r--r-- | src/nvim/search.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/search.c b/src/nvim/search.c index bf6e60026a..e9b92ce3f4 100644 --- a/src/nvim/search.c +++ b/src/nvim/search.c @@ -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); |