nvim-tree.lua/lua/nvim-tree/globals.lua
2025-06-20 12:01:24 +10:00

11 lines
163 B
Lua

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