Skip to content

Commit 29fec08

Browse files
committed
docs(#3088): format
1 parent 002b99d commit 29fec08

4 files changed

Lines changed: 3 additions & 6 deletions

File tree

lua/nvim-tree/_meta/api/classes.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
---@meta
2+
13
---@brief
24
---Classes shared by multiple API modules.
35
---

lua/nvim-tree/_meta/api/commands.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---@meta
22
local nvim_tree = { api = { commands = {} } }
33

4-
54
---
65
---@class nvim_tree.api.commands.Command
76
---@inlinedoc

lua/nvim-tree/_meta/api/events.lua

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
---@meta
2-
3-
local events = require("nvim-tree.events")
4-
52
local nvim_tree = { api = { events = {} } }
63

74
---
@@ -11,6 +8,6 @@ local nvim_tree = { api = { events = {} } }
118
---@param callback fun(payload: table?)
129
function nvim_tree.api.events.subscribe(event_type, callback) end
1310

14-
nvim_tree.api.events.Event = events.Event
11+
nvim_tree.api.events.Event = require("nvim-tree.events").Event
1512

1613
return nvim_tree.api.events

lua/nvim-tree/_meta/api/node.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---@meta
22
local nvim_tree = { api = { node = { navigate = { sibling = {}, git = {}, diagnostics = {}, opened = {}, }, run = {}, open = {}, buffer = {}, } } }
33

4-
54
---
65
---@class nvim_tree.api.node.open.Opts
76
---@inlinedoc

0 commit comments

Comments
 (0)