2023-11-16 11:21:24 -07:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
--- Query the host terminal emulator for terminfo capabilities.
|
|
|
|
---
|
|
|
|
--- This function sends the XTGETTCAP DCS sequence to the host terminal emulator asking the terminal
|
|
|
|
--- to send us its terminal capabilities. These are strings that are normally taken from a terminfo
|
|
|
|
--- file, however an up to date terminfo database is not always available (particularly on remote
|
|
|
|
--- machines), and many terminals continue to misidentify themselves or do not provide their own
|
|
|
|
--- terminfo file, making the terminfo database unreliable.
|
|
|
|
---
|
|
|
|
--- Querying the terminal guarantees that we get a truthful answer, but only if the host terminal
|
|
|
|
--- emulator supports the XTGETTCAP sequence.
|
|
|
|
---
|
|
|
|
--- @param caps string|table A terminal capability or list of capabilities to query
|
2024-04-29 16:04:42 -07:00
|
|
|
--- @param cb fun(cap:string, found:boolean, seq:string?) Callback function which is called for
|
2023-12-05 11:01:32 -07:00
|
|
|
--- each capability in {caps}. {found} is set to true if the capability was found or false
|
|
|
|
--- otherwise. {seq} is the control sequence for the capability if found, or nil for
|
|
|
|
--- boolean capabilities.
|
2023-11-16 11:21:24 -07:00
|
|
|
function M.query(caps, cb)
|
2024-10-18 03:33:12 -07:00
|
|
|
vim.validate('caps', caps, { 'string', 'table' })
|
|
|
|
vim.validate('cb', cb, 'function')
|
2023-11-16 11:21:24 -07:00
|
|
|
|
|
|
|
if type(caps) ~= 'table' then
|
|
|
|
caps = { caps }
|
|
|
|
end
|
|
|
|
|
2023-12-05 11:01:32 -07:00
|
|
|
local pending = {} ---@type table<string, boolean>
|
|
|
|
for _, v in ipairs(caps) do
|
|
|
|
pending[v] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
local timer = assert(vim.uv.new_timer())
|
2023-11-16 11:21:24 -07:00
|
|
|
|
2023-12-05 11:01:32 -07:00
|
|
|
local id = vim.api.nvim_create_autocmd('TermResponse', {
|
2023-12-14 10:37:45 -07:00
|
|
|
nested = true,
|
2023-11-16 11:21:24 -07:00
|
|
|
callback = function(args)
|
|
|
|
local resp = args.data ---@type string
|
2023-12-05 11:01:32 -07:00
|
|
|
local k, rest = resp:match('^\027P1%+r(%x+)(.*)$')
|
|
|
|
if k and rest then
|
2023-11-16 11:21:24 -07:00
|
|
|
local cap = vim.text.hexdecode(k)
|
2024-10-31 04:28:02 -07:00
|
|
|
if not cap or not pending[cap] then
|
2023-12-13 07:14:30 -07:00
|
|
|
-- Received a response for a capability we didn't request. This can happen if there are
|
|
|
|
-- multiple concurrent XTGETTCAP requests
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2023-12-05 11:01:32 -07:00
|
|
|
local seq ---@type string?
|
|
|
|
if rest:match('^=%x+$') then
|
|
|
|
seq = vim.text
|
|
|
|
.hexdecode(rest:sub(2))
|
|
|
|
:gsub('\\E', '\027')
|
|
|
|
:gsub('%%p%d', '')
|
|
|
|
:gsub('\\(%d+)', string.char)
|
|
|
|
end
|
|
|
|
|
|
|
|
cb(cap, true, seq)
|
2023-11-16 11:21:24 -07:00
|
|
|
|
2023-12-05 11:01:32 -07:00
|
|
|
pending[cap] = nil
|
2023-11-16 11:21:24 -07:00
|
|
|
|
2023-12-05 11:01:32 -07:00
|
|
|
if next(pending) == nil then
|
2023-11-16 11:21:24 -07:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
local encoded = {} ---@type string[]
|
|
|
|
for i = 1, #caps do
|
|
|
|
encoded[i] = vim.text.hexencode(caps[i])
|
|
|
|
end
|
|
|
|
|
|
|
|
local query = string.format('\027P+q%s\027\\', table.concat(encoded, ';'))
|
2023-11-28 15:34:18 -07:00
|
|
|
|
|
|
|
-- If running in tmux, wrap with the passthrough sequence
|
|
|
|
if os.getenv('TMUX') then
|
2023-11-29 08:49:44 -07:00
|
|
|
query = string.format('\027Ptmux;%s\027\\', query:gsub('\027', '\027\027'))
|
2023-11-28 15:34:18 -07:00
|
|
|
end
|
|
|
|
|
2023-11-16 11:21:24 -07:00
|
|
|
io.stdout:write(query)
|
2023-12-05 11:01:32 -07:00
|
|
|
|
|
|
|
timer:start(1000, 0, function()
|
|
|
|
-- Delete the autocommand if no response was received
|
|
|
|
vim.schedule(function()
|
|
|
|
-- Suppress error if autocommand has already been deleted
|
|
|
|
pcall(vim.api.nvim_del_autocmd, id)
|
|
|
|
|
|
|
|
-- Call the callback for all capabilities that were not found
|
|
|
|
for k in pairs(pending) do
|
|
|
|
cb(k, false, nil)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
if not timer:is_closing() then
|
|
|
|
timer:close()
|
|
|
|
end
|
|
|
|
end)
|
2023-11-16 11:21:24 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|