feat(tui): add nvim_ui_send (#35406)

This function allows the Nvim core to write arbitrary data to a TTY
connected to a UI's stdout.
This commit is contained in:
Gregory Anders
2025-08-22 15:05:43 -05:00
committed by GitHub
parent 5d8e870c11
commit 586b1b2d9b
16 changed files with 161 additions and 13 deletions

View File

@@ -89,7 +89,7 @@ vim.api.nvim_create_autocmd('UIEnter', {
})
-- Write DA1 request
io.stdout:write('\027[c')
vim.api.nvim_ui_send('\027[c')
end,
})