We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a965c65 commit d300f37Copy full SHA for d300f37
lua/nvim-tree/node/init.lua
@@ -63,11 +63,13 @@ function BaseNode:has_one_child_folder()
63
return #self.nodes == 1 and self.nodes[1].nodes and vim.loop.fs_access(self.nodes[1].absolute_path, "R") or false
64
end
65
66
+--luacheck: push ignore 212
67
---Update the GitStatus of the node
68
---@param parent_ignored boolean
69
---@param status table?
70
function BaseNode:update_git_status(parent_ignored, status) ---@diagnostic disable-line: unused-local
71
72
+--luacheck: pop
73
74
---@return GitStatus?
75
function BaseNode:get_git_status()
0 commit comments