feat: delete mappings for git_branches (#578)

This commit is contained in:
ThePrimeagen
2021-03-01 14:18:36 -07:00
committed by GitHub
parent a14b95962f
commit 50ae42b158

View File

@@ -105,6 +105,12 @@ git.branches = function(opts)
map('i', '<c-r>', actions.git_rebase_branch) map('i', '<c-r>', actions.git_rebase_branch)
map('n', '<c-r>', actions.git_rebase_branch) map('n', '<c-r>', actions.git_rebase_branch)
map('i', '<c-d>', actions.git_delete_branch)
map('n', '<c-d>', actions.git_delete_branch)
map('i', '<c-u>', false)
map('n', '<c-u>', false)
return true return true
end end
}):find() }):find()