mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
fix: wait for initial buffer content sync
This commit is contained in:
parent
30cf1e1554
commit
68362f1f08
1 changed files with 5 additions and 1 deletions
|
@ -12,8 +12,9 @@ local ticks = {}
|
||||||
---@param name string name of buffer to attach to
|
---@param name string name of buffer to attach to
|
||||||
---@param buffer? integer if provided, use given buffer (will clear content)
|
---@param buffer? integer if provided, use given buffer (will clear content)
|
||||||
---@param content? string if provided, set this content after attaching
|
---@param content? string if provided, set this content after attaching
|
||||||
|
---@param nowait? boolean skip waiting for initial content sync
|
||||||
---@return BufferController
|
---@return BufferController
|
||||||
local function attach(name, buffer, content)
|
local function attach(name, buffer, content, nowait)
|
||||||
if buffer_id_map[name] ~= nil then
|
if buffer_id_map[name] ~= nil then
|
||||||
error("already attached to buffer " .. name)
|
error("already attached to buffer " .. name)
|
||||||
end
|
end
|
||||||
|
@ -25,6 +26,9 @@ local function attach(name, buffer, content)
|
||||||
vim.api.nvim_set_current_buf(buffer)
|
vim.api.nvim_set_current_buf(buffer)
|
||||||
end
|
end
|
||||||
local controller = session.workspace:attach_buffer(name):await()
|
local controller = session.workspace:attach_buffer(name):await()
|
||||||
|
if not nowait then
|
||||||
|
controller:poll():await() -- wait for current state to get synched
|
||||||
|
end
|
||||||
|
|
||||||
-- TODO map name to uuid
|
-- TODO map name to uuid
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue