Fix git rebase input message (#720)

This commit is contained in:
Thiago Medeiros
2021-04-04 04:48:42 +02:00
committed by GitHub
parent 89a6161c81
commit 0944c4a88f

View File

@@ -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)