* feat(#2415): granular highlight_diagnostics, normalise groups (#2454) * chore: normalise colours and enable cterm (#2471) * feat(#2415): granular highlight_git, normalise git groups (#2487) * docs: update CONTRIBUTING.md (#2485) * feat(#2415): granular highlight_git, normalise git groups * feat(#2415): normalise and add modified groups * feat(#2415): create Decorator class for modified and bookmarks * feat(#2415): create DecoratorDiagnostics * feat(#2415): create DecoratorGit * feat(#2415): create DecoratorGit * add DecoratorCopied DecoratorCut * add DecoratorOpened * remove unloaded_bufnr checks as the view debouncer takes care of it * Add `renderer.highlight_git` to accepted strings * fix(#2415): builder refactor (#2538) * simplify builder signs * decorators take care of themselves and are priority ordered * simplify builder hl groups * refactor builder for icon arrays * builder use decorators generically * fix(#2415): harden sign creation (#2539) * fix(#2415): harden unicode signs * Decorator tidy * normalise git sign creation and tidy * tidy builder * NvimTreeBookmarkIcon * tidy HL doc * tidy HL doc * tidy HL doc * tidy builder doc * standardise on '---@param' * DiagnosticWarning -> DiagnosticWarn * annotate decorators * limit to two highlight groups for line rendering * style * apply #2519 * feat(#2415): combined hl groups (#2601) * feat(#2415): create combined highlight groups * feat(#2415): create combined highlight groups * feat(#2415): create combined highlight groups * ci: allow workflow_dispatch (#2620) * one and only one hl namespace, required winhl removal * small tidies * colors.lua -> appearance.lua * full-name uses one and only namespace * don't highlight fast, just apply to namespace, safer win_set_hl * gut builder (#2622) collapse Builder * fix group_empty function check * feat(#2415): highlight-overhaul release date --------- Co-authored-by: Akmadan23 <azadahmadi@mailo.com>
This commit is contained in:
committed by
GitHub
parent
f24afa2cef
commit
e9c5abe073
@@ -2,18 +2,23 @@ local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
||||
local diagnostics = require "nvim-tree.diagnostics"
|
||||
|
||||
local M = {
|
||||
HS_FILE = {},
|
||||
HS_FOLDER = {},
|
||||
ICON = {},
|
||||
hl_pos = HL_POSITION.none,
|
||||
-- highlight strings for the icons
|
||||
HS_ICON = {},
|
||||
|
||||
-- highlight groups for HL
|
||||
HG_FILE = {},
|
||||
HG_FOLDER = {},
|
||||
|
||||
-- position for HL
|
||||
HL_POS = HL_POSITION.none,
|
||||
}
|
||||
|
||||
---Diagnostics text highlight group when highlight_diagnostics.
|
||||
---Diagnostics highlight group and position when highlight_diagnostics.
|
||||
---@param node table
|
||||
---@return HL_POSITION position none when no status
|
||||
---@return string|nil group only when status
|
||||
function M.get_highlight(node)
|
||||
if not node or M.hl_pos == HL_POSITION.none then
|
||||
if not node or M.HL_POS == HL_POSITION.none then
|
||||
return HL_POSITION.none, nil
|
||||
end
|
||||
|
||||
@@ -26,7 +31,7 @@ function M.get_highlight(node)
|
||||
end
|
||||
|
||||
if group then
|
||||
return M.hl_pos, group
|
||||
return M.HL_POS, group
|
||||
else
|
||||
return HL_POSITION.none, nil
|
||||
end
|
||||
@@ -49,40 +54,38 @@ function M.setup(opts)
|
||||
}
|
||||
|
||||
if opts.diagnostics.enable and opts.renderer.highlight_diagnostics then
|
||||
-- TODO add a HL_POSITION
|
||||
-- M.hl_pos = HL_POSITION[opts.renderer.highlight_diagnostics]
|
||||
M.hl_pos = HL_POSITION.name
|
||||
M.HL_POS = HL_POSITION[opts.renderer.highlight_diagnostics]
|
||||
end
|
||||
|
||||
M.HS_FILE[vim.diagnostic.severity.ERROR] = "NvimTreeLspDiagnosticsErrorText"
|
||||
M.HS_FILE[vim.diagnostic.severity.WARN] = "NvimTreeLspDiagnosticsWarningText"
|
||||
M.HS_FILE[vim.diagnostic.severity.INFO] = "NvimTreeLspDiagnosticsInfoText"
|
||||
M.HS_FILE[vim.diagnostic.severity.HINT] = "NvimTreeLspDiagnosticsHintText"
|
||||
M.HG_FILE[vim.diagnostic.severity.ERROR] = "NvimTreeDiagnosticErrorFileHL"
|
||||
M.HG_FILE[vim.diagnostic.severity.WARN] = "NvimTreeDiagnosticWarningFileHL"
|
||||
M.HG_FILE[vim.diagnostic.severity.INFO] = "NvimTreeDiagnosticInfoFileHL"
|
||||
M.HG_FILE[vim.diagnostic.severity.HINT] = "NvimTreeDiagnosticHintFileHL"
|
||||
|
||||
M.HS_FOLDER[vim.diagnostic.severity.ERROR] = "NvimTreeLspDiagnosticsErrorFolderText"
|
||||
M.HS_FOLDER[vim.diagnostic.severity.WARN] = "NvimTreeLspDiagnosticsWarningFolderText"
|
||||
M.HS_FOLDER[vim.diagnostic.severity.INFO] = "NvimTreeLspDiagnosticsInfoFolderText"
|
||||
M.HS_FOLDER[vim.diagnostic.severity.HINT] = "NvimTreeLspDiagnosticsHintFolderText"
|
||||
M.HG_FOLDER[vim.diagnostic.severity.ERROR] = "NvimTreeDiagnosticErrorFolderHL"
|
||||
M.HG_FOLDER[vim.diagnostic.severity.WARN] = "NvimTreeDiagnosticWarningFolderHL"
|
||||
M.HG_FOLDER[vim.diagnostic.severity.INFO] = "NvimTreeDiagnosticInfoFolderHL"
|
||||
M.HG_FOLDER[vim.diagnostic.severity.HINT] = "NvimTreeDiagnosticHintFolderHL"
|
||||
|
||||
M.ICON[vim.diagnostic.severity.ERROR] = {
|
||||
M.HS_ICON[vim.diagnostic.severity.ERROR] = {
|
||||
str = M.config.diagnostics.icons.error,
|
||||
hl = { "NvimTreeLspDiagnosticsError" },
|
||||
hl = { "NvimTreeDiagnosticErrorIcon" },
|
||||
}
|
||||
|
||||
M.ICON[vim.diagnostic.severity.WARN] = {
|
||||
M.HS_ICON[vim.diagnostic.severity.WARN] = {
|
||||
str = M.config.diagnostics.icons.warning,
|
||||
hl = { "NvimTreeLspDiagnosticsWarning" },
|
||||
hl = { "NvimTreeDiagnosticWarningIcon" },
|
||||
}
|
||||
M.ICON[vim.diagnostic.severity.INFO] = {
|
||||
M.HS_ICON[vim.diagnostic.severity.INFO] = {
|
||||
str = M.config.diagnostics.icons.info,
|
||||
hl = { "NvimTreeLspDiagnosticsInformation" },
|
||||
hl = { "NvimTreeDiagnosticInfoIcon" },
|
||||
}
|
||||
M.ICON[vim.diagnostic.severity.HINT] = {
|
||||
M.HS_ICON[vim.diagnostic.severity.HINT] = {
|
||||
str = M.config.diagnostics.icons.hint,
|
||||
hl = { "NvimTreeLspDiagnosticsHint" },
|
||||
hl = { "NvimTreeDiagnosticHintIcon" },
|
||||
}
|
||||
|
||||
for _, i in ipairs(M.ICON) do
|
||||
for _, i in ipairs(M.HS_ICON) do
|
||||
vim.fn.sign_define(i.hl[1], { text = i.str, texthl = i.hl[1] })
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user