refactor: format tables line by line for better readability (#2456)
* Format tables line by line for better readability * Forgot a comma --------- Co-authored-by: Alexander Courtis <alex@courtis.org>
This commit is contained in:
@@ -2,13 +2,29 @@ local notify = require "nvim-tree.notify"
|
||||
|
||||
local Api = {
|
||||
tree = {},
|
||||
node = { navigate = { sibling = {}, git = {}, diagnostics = {}, opened = {} }, run = {}, open = {} },
|
||||
node = {
|
||||
navigate = {
|
||||
sibling = {},
|
||||
git = {},
|
||||
diagnostics = {},
|
||||
opened = {},
|
||||
},
|
||||
run = {},
|
||||
open = {},
|
||||
},
|
||||
events = {},
|
||||
marks = { bulk = {}, navigate = {} },
|
||||
fs = { copy = {} },
|
||||
marks = {
|
||||
bulk = {},
|
||||
navigate = {},
|
||||
},
|
||||
fs = {
|
||||
copy = {},
|
||||
},
|
||||
git = {},
|
||||
live_filter = {},
|
||||
config = { mappings = {} },
|
||||
config = {
|
||||
mappings = {},
|
||||
},
|
||||
commands = {},
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user