nvim-tree.lua/lua/nvim-tree/actions/toggle-help.lua
kiyan 47ccc2913f refacto: move toggle help and filter toggles into actions
also fix explorer to properly remove element on update when filter is
applied
2022-02-07 20:43:24 +01:00

9 lines
125 B
Lua

local M = {}
function M.fn()
require"nvim-tree.view".toggle_help()
return require"nvim-tree.lib".redraw()
end
return M