From 50ae42b158dbd487dce9b4cf392a954efd79d02b Mon Sep 17 00:00:00 2001 From: ThePrimeagen Date: Mon, 1 Mar 2021 14:18:36 -0700 Subject: [PATCH] feat: delete mappings for git_branches (#578) --- lua/telescope/builtin/git.lua | 6 ++++++ 1 file changed, 6 insertions(+) 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', '', actions.git_rebase_branch) map('n', '', actions.git_rebase_branch) + + map('i', '', actions.git_delete_branch) + map('n', '', actions.git_delete_branch) + + map('i', '', false) + map('n', '', false) return true end }):find()