This commit is contained in:
Philipp Hochkamp 2023-04-24 06:01:42 +02:00
parent b84724fe2c
commit 8531fab65b
7 changed files with 120 additions and 68 deletions

View file

@ -14,12 +14,22 @@ function _lazygit_toggle()
lazygit:toggle()
end
local pipeline = Terminal:new {
local glab = Terminal:new {
cmd = "glab ci view",
hidden = true,
direction = 'float'
}
function _pipeline_toggle()
pipeline:toggle()
function _glab_toggle()
glab:toggle()
end
local ghub = Terminal:new {
cmd = "gh run view",
hidden = true,
direction = 'float'
}
function _ghub_toggle()
ghub:toggle()
end