mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-21 20:11:06 +00:00
feat(sidekick): added <leader>ad to close/detach a terminal/session
This commit is contained in:
parent
e8c5fa7eae
commit
f8b062b130
1 changed files with 5 additions and 0 deletions
|
|
@ -74,6 +74,11 @@ return {
|
||||||
-- require("sidekick.cli").select({ filter = { installed = true } })
|
-- require("sidekick.cli").select({ filter = { installed = true } })
|
||||||
desc = "Select CLI",
|
desc = "Select CLI",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"<leader>ad",
|
||||||
|
function() require("sidekick.cli").close() end,
|
||||||
|
desc = "Detach a CLI Session",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"<leader>at",
|
"<leader>at",
|
||||||
function() require("sidekick.cli").send({ msg = "{this}" }) end,
|
function() require("sidekick.cli").send({ msg = "{this}" }) end,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue