diff options
| author | ThePrimeagen <michael.b.paulson@gmail.com> | 2021-03-01 14:18:36 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-01 22:18:36 +0100 |
| commit | 50ae42b158dbd487dce9b4cf392a954efd79d02b (patch) | |
| tree | e80a2a99c8ba9834d171ae5c53e666eafb906bdf /lua/telescope/builtin/git.lua | |
| parent | a14b95962f9a4f4f0e4c222dc82de090d51c7856 (diff) | |
feat: delete mappings for git_branches (#578)
Diffstat (limited to 'lua/telescope/builtin/git.lua')
| -rw-r--r-- | lua/telescope/builtin/git.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/telescope/builtin/git.lua b/lua/telescope/builtin/git.lua index c333159..bf41379 100644 --- a/lua/telescope/builtin/git.lua +++ b/lua/telescope/builtin/git.lua @@ -105,6 +105,12 @@ git.branches = function(opts) map('i', '<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 end }):find() |
