Skip to content

Commit d6b5d6e

Browse files
committed
feat(ui): press <c-c> to abort any running tasks. Fixes #258
1 parent ed0583e commit d6b5d6e

File tree

4 files changed

+69
-4
lines changed

4 files changed

+69
-4
lines changed

lua/lazy/manage/process.lua

+58-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,44 @@ local Config = require("lazy.core.config")
22

33
local M = {}
44

5+
---@type table<vim.loop.Process, true>
6+
M.running = {}
7+
8+
M.signals = {
9+
"HUP",
10+
"INT",
11+
"QUIT",
12+
"ILL",
13+
"TRAP",
14+
"ABRT",
15+
"BUS",
16+
"FPE",
17+
"KILL",
18+
"USR1",
19+
"SEGV",
20+
"USR2",
21+
"PIPE",
22+
"ALRM",
23+
"TERM",
24+
"CHLD",
25+
"CONT",
26+
"STOP",
27+
"TSTP",
28+
"TTIN",
29+
"TTOU",
30+
"URG",
31+
"XCPU",
32+
"XFSZ",
33+
"VTALRM",
34+
"PROF",
35+
"WINCH",
36+
"IO",
37+
"PWR",
38+
"EMT",
39+
"SYS",
40+
"INFO",
41+
}
42+
543
---@diagnostic disable-next-line: no-unknown
644
local uv = vim.loop
745

@@ -14,6 +52,7 @@ local uv = vim.loop
1452
---@field env? string[]
1553

1654
---@param opts? ProcessOpts
55+
---@param cmd string
1756
function M.spawn(cmd, opts)
1857
opts = opts or {}
1958
opts.timeout = opts.timeout or (Config.options.git and Config.options.git.timeout * 1000)
@@ -44,9 +83,8 @@ function M.spawn(cmd, opts)
4483
if opts.timeout then
4584
timeout = uv.new_timer()
4685
timeout:start(opts.timeout, 0, function()
47-
if handle and not handle:is_closing() then
86+
if M.kill(handle) then
4887
killed = true
49-
uv.process_kill(handle, "sigint")
5088
end
5189
end)
5290
end
@@ -57,6 +95,7 @@ function M.spawn(cmd, opts)
5795
cwd = opts.cwd,
5896
env = env,
5997
}, function(exit_code, signal)
98+
M.running[handle] = nil
6099
if timeout then
61100
timeout:stop()
62101
timeout:close()
@@ -74,6 +113,8 @@ function M.spawn(cmd, opts)
74113
output = output:gsub("[^\r\n]+\r", "")
75114
if killed then
76115
output = output .. "\n" .. "Process was killed because it reached the timeout"
116+
elseif signal ~= 0 then
117+
output = output .. "\n" .. "Process was killed with SIG" .. M.signals[signal]
77118
end
78119

79120
vim.schedule(function()
@@ -89,6 +130,7 @@ function M.spawn(cmd, opts)
89130
end
90131
return
91132
end
133+
M.running[handle] = true
92134

93135
---@param data? string
94136
local function on_output(err, data)
@@ -112,6 +154,20 @@ function M.spawn(cmd, opts)
112154
return handle
113155
end
114156

157+
function M.kill(handle)
158+
if handle and not handle:is_closing() then
159+
M.running[handle] = nil
160+
uv.process_kill(handle, "sigint")
161+
return true
162+
end
163+
end
164+
165+
function M.abort()
166+
for handle in pairs(M.running) do
167+
M.kill(handle)
168+
end
169+
end
170+
115171
---@param cmd string[]
116172
---@param opts? {cwd:string, env:table}
117173
function M.exec(cmd, opts)

lua/lazy/view/config.lua

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ M.keys = {
3131
details = "<cr>",
3232
profile_sort = "<C-s>",
3333
profile_filter = "<C-f>",
34+
abort = "<C-c>",
3435
}
3536

3637
---@type table<string,LazyViewCommand>

lua/lazy/view/init.lua

+5
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ function M.create()
6262
self:update()
6363
end)
6464

65+
vim.keymap.set("n", ViewConfig.keys.abort, function()
66+
require("lazy.manage.process").abort()
67+
return "<c-c>"
68+
end, { silent = true, buffer = self.buf, expr = true })
69+
6570
-- plugin details
6671
self:on_key(ViewConfig.keys.details, function()
6772
local plugin = self.render:get_plugin()

lua/lazy/view/render.lua

+5-2
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,9 @@ end
154154
function M:help()
155155
self:append("Help", "LazyH2"):nl():nl()
156156

157-
self:append("You can press "):append("<CR>", "LazySpecial"):append(" on a plugin to show its details."):nl()
157+
self:append("Use "):append("<C-c>", "LazySpecial"):append(" to abort all running tasks."):nl():nl()
158+
159+
self:append("You can press "):append("<CR>", "LazySpecial"):append(" on a plugin to show its details."):nl():nl()
158160

159161
self:append("Most properties can be hovered with ")
160162
self:append("<K>", "LazySpecial")
@@ -164,7 +166,8 @@ function M:help()
164166
:append("<K>", "LazySpecial")
165167
:append(" on a plugin anywhere else, a diff will be opened if there are updates")
166168
:nl()
167-
self:append("or the plugin was just updated. Otherwise the plugin webpage will open."):nl()
169+
self:append("or the plugin was just updated. Otherwise the plugin webpage will open."):nl():nl()
170+
168171
self:append("Use "):append("<d>", "LazySpecial"):append(" on a commit or plugin to open the diff view"):nl()
169172
self:nl()
170173

0 commit comments

Comments
 (0)