aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorundyamon <148129121+undyamon@users.noreply.github.com>2023-11-29 22:55:12 +0100
committerGitHub <noreply@github.com>2023-11-29 23:55:12 +0200
commitcbd99acd8af1d654625ffcaa155c4e0cc2b88638 (patch)
treed511fa471b35adfdeeb5aa4380c4bb93fd4cc6c3
parentf42b164499b6e833ac6b94993abc215fc4a0db17 (diff)
downloadneovim-tasks-cbd99acd8af1d654625ffcaa155c4e0cc2b88638.tar.gz
neovim-tasks-cbd99acd8af1d654625ffcaa155c4e0cc2b88638.zip
Fix cargo module load when executable is not present (#19)
Closes #17.
-rw-r--r--lua/tasks/module/cargo.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/lua/tasks/module/cargo.lua b/lua/tasks/module/cargo.lua
index 8caf6ab..7b17b54 100644
--- a/lua/tasks/module/cargo.lua
+++ b/lua/tasks/module/cargo.lua
@@ -80,15 +80,19 @@ end
80local function get_cargo_subcommands() 80local function get_cargo_subcommands()
81 local cargo_subcommands = {} 81 local cargo_subcommands = {}
82 82
83 local job = Job:new({ 83 local ok, job = pcall(Job.new, Job, {
84 command = 'cargo', 84 command = 'cargo',
85 args = { '--list' }, 85 args = { '--list' },
86 enabled_recording = true, 86 enabled_recording = true,
87 }) 87 })
88 if not ok then
89 utils.notify("Unable to execute 'cargo' command", vim.log.levels.WARN)
90 return {}
91 end
88 job:sync() 92 job:sync()
89 93
90 if job.code ~= 0 or job.signal ~= 0 then 94 if job.code ~= 0 or job.signal ~= 0 then
91 utils.notify('Unable to get list of available cargo subcommands', vim.log.levels.ERROR) 95 utils.notify('Unable to get list of available cargo subcommands', vim.log.levels.WARN)
92 return {} 96 return {}
93 end 97 end
94 98