fix: improve git workflow

This commit is contained in:
2026-09-11 20:41:09 +02:00
parent 887ade2cd7
commit 6dadd015bf
4 changed files with 53 additions and 28 deletions
+8 -15
View File
@@ -1,26 +1,19 @@
local M = {}
-- Open a command in a simple centered floating window
function M.open_terminal_app(cmd)
local buf = vim.api.nvim_create_buf(false, true)
vim.bo[buf].bufhidden = "wipe"
local function open(cmd)
local lines = vim.o.lines - vim.o.cmdheight - (vim.o.laststatus > 0 and 1 or 0)
local w = math.floor(vim.o.columns * 0.95)
local h = math.floor(lines * 0.95)
local w, h = math.floor(vim.o.columns * 0.95), math.floor(lines * 0.95)
local buf = vim.api.nvim_create_buf(false, true)
vim.bo[buf].bufhidden = 'wipe'
local win = vim.api.nvim_open_win(buf, true, {
relative = "editor",
relative = 'editor',
width = w,
height = h,
row = math.floor((lines - h) / 2),
col = math.floor((vim.o.columns - w) / 2),
border = "rounded",
border = 'rounded',
})
vim.fn.termopen(cmd, {
on_exit = function() pcall(vim.api.nvim_win_close, win, true) end,
})
vim.fn.termopen(cmd, { on_exit = function() pcall(vim.api.nvim_win_close, win, true) end })
end
return M
return { open = open }