refactor: commands runner (#42)

* feat(utils): first impl of own commands runner

* refactor(gotests): uses own runner instead of vendored

* refactor(utils): back to plenary.job

* refactor(gotests): use new runner, clean code

* fix(runner): now it returns output correctly

* refactor(iferr): use vim.system

i have tried to use _utils.runner, but i can't figure out how to make `< file.go` for the command

* refactor(impl): use new runner

* refactor(installer): use new runner

* refactor(struct_tags): use new runner

* refactor: commands such as :GoGet runs with new runner

* refactor: throw errors in more lua way, i think

* refactor(utils): notify now has title

* refactor: use more correct way of notifying

* refactor(runner): write error message on error
This commit is contained in:
Smirnov Oleksandr 2023-08-10 12:04:33 +03:00
parent 011769b99b
commit 2e89cea6f3
11 changed files with 163 additions and 178 deletions

View file

@ -1,5 +1,5 @@
local Job = require "plenary.job"
local c = require("gopher.config").commands
local r = require "gopher._utils.runner"
local u = require "gopher._utils"
local installer = {}
@ -14,22 +14,16 @@ local urls = {
---@param pkg string
local function install(pkg)
local url = urls[pkg] .. "@latest"
Job:new({
command = c.go,
r.sync(c.go, {
args = { "install", url },
on_exit = function(_, retval)
if retval ~= 0 then
u.deferred_notify(
"command 'go install " .. url .. "' exited with code " .. retval,
vim.log.levels.ERROR
)
on_exit = function(data, status)
if not status == 0 then
error("go install failed: " .. data)
return
end
u.deferred_notify("install " .. url .. " finished", vim.log.levels.INFO)
u.notify("installed: " .. url)
end,
}):start()
})
end
---Install required go deps