Skip to content

Commit 42c745a

Browse files
committed
fix: folder.symlink* was incorrectly rendered as folder.default|open
1 parent 82ab19e commit 42c745a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/nvim-tree/renderer/components/icons.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ end
1616
---@return string icon
1717
---@return string? name
1818
local function get_folder_icon_default(node, has_children)
19-
local is_symlink = node.links_to ~= nil
19+
local is_symlink = node.link_to ~= nil
2020
local n
2121
if is_symlink and node.open then
2222
n = M.config.glyphs.folder.symlink_open

0 commit comments

Comments
 (0)