refactor: some small improvments to unimportant commits

This commit is contained in:
Folke Lemaitre 2023-03-02 14:10:19 +01:00
commit a15126b2de
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
3 changed files with 17 additions and 14 deletions

View file

@ -9,6 +9,7 @@ M.colors = {
CommitIssue = "Number",
CommitType = "Title", -- conventional commit type
CommitScope = "Italic", -- conventional commit scope
Dimmed = "Conceal", -- property
Prop = "Conceal", -- property
Value = "@string", -- value of a property
NoCond = "DiagnosticWarn", -- unloaded icon for a plugin where `cond()` was false

View file

@ -24,6 +24,8 @@ function M.get_commands()
return ret
end
M.dimmed_commits = { "build", "ci", "chore", "doc" }
M.keys = {
hover = "K",
diff = "d",

View file

@ -456,21 +456,21 @@ function M:log(task)
self:diagnostic({ message = "Breaking Changes", severity = vim.diagnostic.severity.WARN })
end
self:append(ref:sub(1, 7) .. " ", "LazyCommit", { indent = 6 })
if msg:match([[^chore]]) or msg:match([[^ci]]) or msg:match([[^doc]]) then
self:append(vim.trim(msg)):highlight({
["."] = "LazyComment",
})
else
self:append(vim.trim(msg)):highlight({
local dimmed = false
for _, dim in ipairs(ViewConfig.dimmed_commits) do
if msg:find("^" .. dim) then
dimmed = true
end
end
self:append(vim.trim(msg), dimmed and "LazyDimmed" or nil):highlight({
["#%d+"] = "LazyCommitIssue",
["^%S+:"] = "LazyCommitType",
["^%S+:"] = dimmed and "Bold" or "LazyCommitType",
["^%S+(%(.*%)):"] = "LazyCommitScope",
["`.-`"] = "@text.literal.markdown_inline",
["%*.-%*"] = "Italic",
["%*%*.-%*%*"] = "Bold",
})
end
-- string.gsub
self:append(" " .. time, "LazyComment")
self:nl()
end