handle missing taskfile in task plugin

This commit is contained in:
dario 2025-04-28 16:37:05 +02:00 committed by dasvh
parent 5790bc57c6
commit c528b074ec
1 changed files with 25 additions and 7 deletions

View File

@ -12,11 +12,16 @@ end
Module.get_tasks = function() Module.get_tasks = function()
local response = vim.fn.system 'task --list --json' local response = vim.fn.system 'task --list --json'
local data = vim.fn.json_decode(response) local exit_code = vim.v.shell_error
-- TODO: handle 'file does not exist' from task if exit_code ~= 0 then
if not data or not data.tasks then vim.notify('Task command failed (missing Taskfile?)', vim.log.levels.ERROR)
vim.notify('No tasks found or failed to parse JSON', vim.log.levels.ERROR) return {}
end
local ok, data = pcall(vim.fn.json_decode, response)
if not ok or not data or not data.tasks then
vim.notify('Failed to parse task output.', vim.log.levels.ERROR)
return {} return {}
end end
@ -27,7 +32,7 @@ Module.execute_task = function(task)
local width, height, row, col = centered_float_size() local width, height, row, col = centered_float_size()
local buf = vim.api.nvim_create_buf(false, true) local buf = vim.api.nvim_create_buf(false, true)
vim.api.nvim_open_win(buf, true, { local win = vim.api.nvim_open_win(buf, true, {
relative = 'editor', relative = 'editor',
row = row, row = row,
col = col, col = col,
@ -38,8 +43,21 @@ Module.execute_task = function(task)
}) })
vim.api.nvim_set_current_buf(buf) vim.api.nvim_set_current_buf(buf)
vim.fn.termopen('task ' .. task) vim.fn.termopen('task ' .. task, {
-- vim.cmd 'startinsert' on_stdout = function(_, _, _)
vim.api.nvim_command 'normal! G'
end,
on_stderr = function(_, _, _)
vim.api.nvim_command 'normal! G'
end,
on_exit = function()
vim.api.nvim_command 'normal! G'
end,
})
vim.keymap.set('n', 'q', function()
vim.api.nvim_win_close(win, true)
end, { buffer = buf, nowait = true, silent = true })
end end
Module.on_choice = function(item) Module.on_choice = function(item)