nvim-tree.lua/lua/nvim-tree/globals.lua
2025-06-20 11:18:38 +10:00

11 lines
161 B
Lua

-- global state, to be refactored away during multi-instance
local M = {
-- from View
WINID_PER_TAB = {},
BUFNR_PER_TAB = {},
CURSORS = {},
}
return M