Skip to content

Commit ce09bfb

Browse files
committed
chore: TODO issue links
1 parent 0fede9f commit ce09bfb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lua/nvim-tree/actions/node/system-open.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function M.fn(node)
6464
M.open(node)
6565
end
6666

67-
-- TODO always use native once 0.10 is the minimum neovim version
67+
-- TODO #2430 always use native once 0.10 is the minimum neovim version
6868
function M.setup(opts)
6969
M.config = {}
7070
M.config.system_open = opts.system_open or {}

lua/nvim-tree/explorer/live-filter.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function LiveFilter:apply_filter(node_)
9292
return
9393
end
9494

95-
-- TODO(kiyan): this iterator cannot yet be refactored with the Iterator module
95+
-- this iterator cannot yet be refactored with the Iterator module
9696
-- since the node mapper is based on its children
9797
local function iterate(node)
9898
local filtered_nodes = 0

lua/nvim-tree/git/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ function M.reload_project(toplevel, path, callback)
118118
callback()
119119
end)
120120
else
121-
-- TODO use callback once async/await is available
121+
-- TODO #1974 use callback once async/await is available
122122
local git_status = Runner.run(opts)
123123
reload_git_status(toplevel, path, project, git_status)
124124
end

lua/nvim-tree/node/init.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ function BaseNode:group_empty_folders()
269269
local is_root = not self.parent
270270
local child_folder_only = self:has_one_child_folder() and self.nodes[1]
271271
if self.explorer.opts.renderer.group_empty and not is_root and child_folder_only then
272-
---@cast self DirectoryNode -- TODO move this to the class
272+
---@cast self DirectoryNode -- TODO #2886 move this to the class
273273
self.group_next = child_folder_only
274274
local ns = child_folder_only:group_empty_folders()
275275
self.nodes = ns or {}
@@ -292,7 +292,7 @@ end
292292
function BaseNode:expand_or_collapse(toggle_group)
293293
toggle_group = toggle_group or false
294294
if self.has_children then
295-
---@cast self DirectoryNode -- TODO move this to the class
295+
---@cast self DirectoryNode -- TODO #2886 move this to the class
296296
self.has_children = false
297297
end
298298

0 commit comments

Comments
 (0)