* refactor: improve API readability, tidy actions modules * Apply requested changes * `actions/reloaders/reloaders.lua` -> `actions/reloaders.lua` --------- Co-authored-by: Alexander Courtis <alex@courtis.org>
8 lines
178 B
Lua
8 lines
178 B
Lua
local M = {}
|
|
|
|
M.item = require "nvim-tree.actions.moves.item"
|
|
M.parent = require "nvim-tree.actions.moves.parent"
|
|
M.sibling = require "nvim-tree.actions.moves.sibling"
|
|
|
|
return M
|