mirror of https://github.com/folke/lazy.nvim.git
fix(ui): properly highlight breaking change commit scope (#1160)
This commit is contained in:
parent
32dead0376
commit
3674036a59
|
@ -475,7 +475,7 @@ function M:log(task)
|
||||||
self:append(vim.trim(msg), dimmed and "LazyDimmed" or nil):highlight({
|
self:append(vim.trim(msg), dimmed and "LazyDimmed" or nil):highlight({
|
||||||
["#%d+"] = "LazyCommitIssue",
|
["#%d+"] = "LazyCommitIssue",
|
||||||
["^%S+:"] = dimmed and "Bold" or "LazyCommitType",
|
["^%S+:"] = dimmed and "Bold" or "LazyCommitType",
|
||||||
["^%S+(%(.*%)):"] = "LazyCommitScope",
|
["^%S+(%(.*%))!?:"] = "LazyCommitScope",
|
||||||
["`.-`"] = "@text.literal.markdown_inline",
|
["`.-`"] = "@text.literal.markdown_inline",
|
||||||
["%*.-%*"] = "Italic",
|
["%*.-%*"] = "Italic",
|
||||||
["%*%*.-%*%*"] = "Bold",
|
["%*%*.-%*%*"] = "Bold",
|
||||||
|
|
Loading…
Reference in New Issue