fix: set ft after detecting

This commit is contained in:
əlemi 2024-09-06 19:58:03 +02:00
parent f2121df6dc
commit 661985c62b
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -90,7 +90,8 @@ local function attach(name, buffer, content, nowait)
controller:callback(function (_controller) async:send() end) controller:callback(function (_controller) async:send() end)
vim.defer_fn(function() async:send() end, 500) -- force a try_recv after 500ms vim.defer_fn(function() async:send() end, 500) -- force a try_recv after 500ms
vim.filetype.match({ buf = buffer }) local filetype = vim.filetype.match({ buf = buffer })
vim.api.nvim_set_option_value("filetype", filetype, { buf = buffer })
print(" ++ attached to buffer " .. name) print(" ++ attached to buffer " .. name)
return controller return controller
end end