From 1fefd0098e92315569b71a99725b63521594991e Mon Sep 17 00:00:00 2001 From: Kyoichiro Yamada Date: Tue, 11 May 2021 19:06:38 +0900 Subject: [PATCH] fix: rename `actions.git_switch` to `git_switch_branch` (#835) --- lua/telescope/actions/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/telescope/actions/init.lua b/lua/telescope/actions/init.lua index 174f390..f78eb01 100644 --- a/lua/telescope/actions/init.lua +++ b/lua/telescope/actions/init.lua @@ -380,7 +380,7 @@ end -- If the branch already exists in local, switch to that. -- If the branch is only in remote, create new branch tracking remote and switch to new one. --@param prompt_bufnr number: The prompt bufnr -actions.git_switch = function(prompt_bufnr) +actions.git_switch_branch = function(prompt_bufnr) local cwd = action_state.get_current_picker(prompt_bufnr).cwd local selection = action_state.get_selected_entry() actions.close(prompt_bufnr)