* stylua -> EmmyLuaCodeStyle: config and doc * stylua -> EmmyLuaCodeStyle: CI * stylua -> EmmyLuaCodeStyle: CI * stylua -> EmmyLuaCodeStyle: CI * stylua -> EmmyLuaCodeStyle: CI * stylua -> EmmyLuaCodeStyle: CI * stylua -> EmmyLuaCodeStyle * stylua -> EmmyLuaCodeStyle: call_arg_parentheses = always * stylua -> EmmyLuaCodeStyle * stylua -> EmmyLuaCodeStyle
38 lines
1.0 KiB
Lua
38 lines
1.0 KiB
Lua
local buffers = require("nvim-tree.buffers")
|
|
|
|
local HL_POSITION = require("nvim-tree.enum").HL_POSITION
|
|
local ICON_PLACEMENT = require("nvim-tree.enum").ICON_PLACEMENT
|
|
|
|
local Decorator = require("nvim-tree.renderer.decorator")
|
|
|
|
---@class (exact) DecoratorOpened: Decorator
|
|
---@field enabled boolean
|
|
---@field icon HighlightedString|nil
|
|
local DecoratorOpened = Decorator:new()
|
|
|
|
---@param opts table
|
|
---@param explorer Explorer
|
|
---@return DecoratorOpened
|
|
function DecoratorOpened:new(opts, explorer)
|
|
local o = Decorator.new(self, {
|
|
explorer = explorer,
|
|
enabled = true,
|
|
hl_pos = HL_POSITION[opts.renderer.highlight_opened_files] or HL_POSITION.none,
|
|
icon_placement = ICON_PLACEMENT.none,
|
|
})
|
|
---@cast o DecoratorOpened
|
|
|
|
return o
|
|
end
|
|
|
|
---Opened highlight: renderer.highlight_opened_files and node has an open buffer
|
|
---@param node Node
|
|
---@return string|nil group
|
|
function DecoratorOpened:calculate_highlight(node)
|
|
if self.hl_pos ~= HL_POSITION.none and buffers.is_opened(node) then
|
|
return "NvimTreeOpenedHL"
|
|
end
|
|
end
|
|
|
|
return DecoratorOpened
|