more stuff
This commit is contained in:
parent
8cda45d29c
commit
5492f24b52
5 changed files with 23 additions and 2 deletions
|
|
@ -211,6 +211,22 @@ return {
|
|||
forge.browse_root()
|
||||
end),
|
||||
},
|
||||
{
|
||||
'<leader>gd',
|
||||
function()
|
||||
require('fzf-lua').fzf_exec(
|
||||
'git branch -a --format="%(refname:short)"',
|
||||
{
|
||||
prompt = 'Git diff> ',
|
||||
actions = {
|
||||
['default'] = function(selected)
|
||||
vim.cmd('Git diff ' .. selected[1])
|
||||
end,
|
||||
},
|
||||
}
|
||||
)
|
||||
end,
|
||||
},
|
||||
{
|
||||
'<leader>gi',
|
||||
function()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue