mirror of https://github.com/folke/lazy.nvim.git
fix(ui): return abort key instead of `<c-c>`
This commit is contained in:
parent
8186cc5db3
commit
5cfe1560c5
|
@ -77,7 +77,7 @@ function M.create()
|
||||||
|
|
||||||
vim.keymap.set("n", ViewConfig.keys.abort, function()
|
vim.keymap.set("n", ViewConfig.keys.abort, function()
|
||||||
require("lazy.manage.process").abort()
|
require("lazy.manage.process").abort()
|
||||||
return "<c-c>"
|
return ViewConfig.keys.abort
|
||||||
end, { silent = true, buffer = self.buf, expr = true })
|
end, { silent = true, buffer = self.buf, expr = true })
|
||||||
|
|
||||||
-- plugin details
|
-- plugin details
|
||||||
|
|
|
@ -160,7 +160,7 @@ end
|
||||||
function M:help()
|
function M:help()
|
||||||
self:append("Help", "LazyH2"):nl():nl()
|
self:append("Help", "LazyH2"):nl():nl()
|
||||||
|
|
||||||
self:append("Use "):append("<C-c>", "LazySpecial"):append(" to abort all running tasks."):nl():nl()
|
self:append("Use "):append(ViewConfig.keys.abort, "LazySpecial"):append(" to abort all running tasks."):nl():nl()
|
||||||
|
|
||||||
self:append("You can press "):append("<CR>", "LazySpecial"):append(" on a plugin to show its details."):nl():nl()
|
self:append("You can press "):append("<CR>", "LazySpecial"):append(" on a plugin to show its details."):nl():nl()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue