mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +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:
@@ -667,7 +667,7 @@ void ex_history(exarg_T *eap)
|
||||
} else {
|
||||
xstrlcpy(IObuff + len, hist[i].hisstr, (size_t)(IOSIZE - len));
|
||||
}
|
||||
msg_outtrans(IObuff, 0);
|
||||
msg_outtrans(IObuff, 0, false);
|
||||
}
|
||||
if (i == idx) {
|
||||
break;
|
||||
|
Reference in New Issue
Block a user