summaryrefslogtreecommitdiff
path: root/lua/telescope
diff options
context:
space:
mode:
authorThiago Medeiros <medeirosthiago@pm.me>2021-04-04 04:48:42 +0200
committerGitHub <noreply@github.com>2021-04-03 22:48:42 -0400
commit0944c4a88f79ff45e5e750ebecdcb476ca221193 (patch)
tree955ca140cfff2a12c70f5cdd742b2fb5f4fc7d74 /lua/telescope
parent89a6161c81a516c4e2fe80a3365f774961ac9b9d (diff)
Fix git rebase input message (#720)
Diffstat (limited to 'lua/telescope')
-rw-r--r--lua/telescope/actions/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/actions/init.lua b/lua/telescope/actions/init.lua
index 9eca442..de6c58b 100644
--- a/lua/telescope/actions/init.lua
+++ b/lua/telescope/actions/init.lua
@@ -353,7 +353,7 @@ actions.git_rebase_branch = function(prompt_bufnr)
local cwd = action_state.get_current_picker(prompt_bufnr).cwd
local selection = action_state.get_selected_entry()
- local confirmation = vim.fn.input('Do you really wanna delete branch ' .. selection.value .. '? [Y/n] ')
+ local confirmation = vim.fn.input('Do you really wanna rebase branch ' .. selection.value .. '? [Y/n] ')
if confirmation ~= '' and string.lower(confirmation) ~= 'y' then return end
actions.close(prompt_bufnr)