We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e11d20 commit 7d0fe76Copy full SHA for 7d0fe76
1 file changed
lua/lazy/docs.lua
@@ -131,8 +131,8 @@ function M.colors(opts)
131
{ "---", "---", "---" },
132
}
133
Util.foreach(require(opts.modname).colors, function(group, link)
134
- link = type(link) == "table" and vim.inspect(link):gsub("%s+", " ") or link
135
- lines[#lines + 1] = { "**" .. opts.name .. group .. "**", "***" .. link .. "***", comments[group] or "" }
+ link = type(link) == "table" and "`" .. vim.inspect(link):gsub("%s+", " ") .. "`" or "***" .. link .. "***"
+ lines[#lines + 1] = { "**" .. opts.name .. group .. "**", link, comments[group] or "" }
136
end)
137
return { content = M.table(lines) }
138
end
0 commit comments