mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:00:07 +08:00
42 lines
1.3 KiB
Lua
Vendored
42 lines
1.3 KiB
Lua
Vendored
-- This file contains the built-in components. Each componment is a function
|
|
-- that takes the following arguments:
|
|
-- config: A table containing the configuration provided by the user
|
|
-- when declaring this component in their renderer config.
|
|
-- node: A NuiNode object for the currently focused node.
|
|
-- state: The current state of the source providing the items.
|
|
--
|
|
-- The function should return either a table, or a list of tables, each of which
|
|
-- contains the following keys:
|
|
-- text: The text to display for this item.
|
|
-- highlight: The highlight group to apply to this text.
|
|
|
|
local highlights = require("neo-tree.ui.highlights")
|
|
local common = require("neo-tree.sources.common.components")
|
|
|
|
local M = {}
|
|
|
|
M.icon = function(config, node, state)
|
|
return {
|
|
text = node:get_depth() == 1 and "" or node.extra.kind.icon,
|
|
highlight = node.extra.kind.hl,
|
|
}
|
|
end
|
|
|
|
M.kind_icon = M.icon
|
|
|
|
M.kind_name = function(config, node, state)
|
|
return {
|
|
text = node:get_depth() == 1 and "" or node.extra.kind.name,
|
|
highlight = node.extra.kind.hl,
|
|
}
|
|
end
|
|
|
|
M.name = function(config, node, state)
|
|
return {
|
|
text = node.name,
|
|
highlight = node.extra.kind.hl or highlights.FILE_NAME,
|
|
}
|
|
end
|
|
|
|
return vim.tbl_deep_extend("force", common, M)
|