bmessages.nvim
bmessages.nvim copied to clipboard
Missing syntax highlighting
When I use :messages I get colors for errors (maybe more?)
But :Bmessages is just a plain buffer
vs
Good question I haven't noticed that and can't seem to find relevant documentation around it.
- https://neovim.io/doc/user/message.html
If anyone has some context on syntax highlighting for default :messages window perhaps I can port it over to the :Bmessages buffer.
There is echohl^1, which lets you use any highlight group. The main
construct you usually see is something like this:
echohl ErrorMsg
echo "Error: Something went wrong"
echohl None
I'm not sure how to extract this highlighting info from the message buffer, if at all, however. So I'm probably not really able to help any further.