2022-08-30 18:19:48 +02:00
|
|
|
vim.api.nvim_create_user_command('PkgCommit', function()
|
|
|
|
vim.cmd(string.format('vsplit | lcd %s | ' ..
|
|
|
|
'terminal pkgdev --verbose commit --signoff --edit',
|
|
|
|
vim.fn.expand('%:p:h')))
|
|
|
|
end, {})
|
|
|
|
vim.api.nvim_create_user_command('PkgManifest', function()
|
|
|
|
vim.cmd(string.format('vsplit | lcd %s | ' ..
|
|
|
|
'terminal pkgdev --verbose manifest', vim.fn.expand('%:p:h')))
|
|
|
|
end, {})
|