mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
refactor(message): propagate highlight id instead of attrs
Problem: Highlight group id is not propagated to the end of the message call stack, where ext_messages are emitted. Solution: Refactor message functions to pass along highlight group id instead of attr id.
This commit is contained in:
@@ -2348,7 +2348,7 @@ void ex_scriptnames(exarg_T *eap)
|
||||
vim_snprintf(IObuff, IOSIZE, "%3d: %s", i, NameBuff);
|
||||
if (!message_filtered(IObuff)) {
|
||||
msg_putchar('\n');
|
||||
msg_outtrans(IObuff, 0);
|
||||
msg_outtrans(IObuff, 0, false);
|
||||
line_breakcheck();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user