diff options
| author | thibthib18 <37300147+thibthib18@users.noreply.github.com> | 2021-09-10 08:50:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-10 08:50:58 +0200 |
| commit | b4d6eb9a232dab48ce658470a980e7a15edb500f (patch) | |
| tree | 84a5febeb7c2315deba9e74457e770a3840c4ab1 /lua/telescope/builtin/git.lua | |
| parent | d2b768983cc7be755d255649cfd0d998b11bd203 (diff) | |
feat: git merge branch action (#1220)
Diffstat (limited to 'lua/telescope/builtin/git.lua')
| -rw-r--r-- | lua/telescope/builtin/git.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/telescope/builtin/git.lua b/lua/telescope/builtin/git.lua index a2be2fb..a4da679 100644 --- a/lua/telescope/builtin/git.lua +++ b/lua/telescope/builtin/git.lua @@ -297,6 +297,9 @@ git.branches = function(opts) map("i", "<c-d>", actions.git_delete_branch) map("n", "<c-d>", actions.git_delete_branch) + + map("i", "<c-y>", actions.git_merge_branch) + map("n", "<c-y>", actions.git_merge_branch) return true end, }):find() |
