We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42167e6 commit 4e13fcbCopy full SHA for 4e13fcb
1 file changed
lua/ui/spec.lua
@@ -730,6 +730,8 @@ spec.default = {
730
local content = msg.content[1];
731
local hl = utils.attr_to_hl(content[3]);
732
733
+ require("ui.log").print(vim.inspect(content[2]), "HERE")
734
+
735
if #msg.content == 1 then
736
if hl == "WarningMsg" then
737
config.icon = {
@@ -756,7 +758,7 @@ spec.default = {
756
758
};
757
759
config.line_hl_group = "UIMessageInfo";
760
end
- elseif string.match(content[2] or "", " .+ %w+%.nvim ") then
761
+ elseif string.match(content[2] or "", " .+ %w+%.nvim ") or string.match(content[2] or "", " %w+%.%w+ ") then
762
-- Error message format used by my plugins & blink.cmp
763
-- e plugin.nvim : Some message.
764
return {};
0 commit comments