diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-29 15:52:27 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-09-29 15:55:45 +0200 |
commit | b07fd0e988581f6b9c620bcfc27a068ee61242c1 (patch) | |
tree | 20d0c12d3ca0a15f839223a973423f01708c0025 /src/nvim/cmdexpand.c | |
parent | af7d317f3ff31d5ac5d8724b5057a422e1451b54 (diff) | |
download | rneovim-b07fd0e988581f6b9c620bcfc27a068ee61242c1.tar.gz rneovim-b07fd0e988581f6b9c620bcfc27a068ee61242c1.tar.bz2 rneovim-b07fd0e988581f6b9c620bcfc27a068ee61242c1.zip |
refactor(message): msg_outtrans_long_len_attr -> msg_outtrans_long
Diffstat (limited to 'src/nvim/cmdexpand.c')
-rw-r--r-- | src/nvim/cmdexpand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/cmdexpand.c b/src/nvim/cmdexpand.c index 290cc336b8..bcb893022a 100644 --- a/src/nvim/cmdexpand.c +++ b/src/nvim/cmdexpand.c @@ -976,7 +976,7 @@ static void showmatches_oneline(expand_T *xp, char **matches, int numMatches, in msg_advance(maxlen + 1); msg_puts(p); msg_advance(maxlen + 3); - msg_outtrans_long_attr(p + 2, HL_ATTR(HLF_D)); + msg_outtrans_long(p + 2, HL_ATTR(HLF_D)); break; } for (int i = maxlen - lastlen; --i >= 0;) { |