From 582ae48c9e43d2bcd55dfcc8e2e7a1f29065d924 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sat, 26 Apr 2025 12:55:36 +1000 Subject: [PATCH] chore: fix incorrect @param (#3115) --- lua/nvim-tree/renderer/decorator/git.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/nvim-tree/renderer/decorator/git.lua b/lua/nvim-tree/renderer/decorator/git.lua index c62ef00a..65a8df18 100644 --- a/lua/nvim-tree/renderer/decorator/git.lua +++ b/lua/nvim-tree/renderer/decorator/git.lua @@ -62,7 +62,7 @@ function GitDecorator:build_icons_by_status(glyphs) self.icons_by_status.ignored = { str = glyphs.ignored, hl = { "NvimTreeGitIgnoredIcon" }, ord = 7 } end ----@param icons GitIconsByXY +---@param icons GitIconsByStatus function GitDecorator:build_icons_by_xy(icons) self.icons_by_xy = { ["M "] = { icons.staged },