nvim-tree.lua/lua/nvim-tree/globals.lua
2025-06-20 12:46:30 +10:00

10 lines
147 B
Lua

-- global state, to be refactored away during multi-instance
local M = {
-- from View
WINID_BY_TABID = {},
BUFNR_BY_TABID = {},
}
return M