replace copied warning notification with custom message

This commit is contained in:
Baipyrus 2024-11-26 10:51:57 +01:00
parent a1ca7a6d77
commit 707c1757d8

View File

@ -228,8 +228,12 @@ return {
-- scan single selected entry -- scan single selected entry
local entry = action_state.get_selected_entry() local entry = action_state.get_selected_entry()
if entry == nil and #stashes == 0 then if entry == nil and #stashes == 0 then
-- reference: https://github.com/nvim-telescope/telescope.nvim/blob/master/lua/telescope/actions/init.lua#L589 vim.notify(
utils.__warn_no_selection 'actions.git_apply_stash' ---@diagnostic disable-next-line: param-type-mismatch
string.format('WARN [%s]: Nothing currently selected', 'git_drop_stash'),
vim.log.levels.WARN,
{ title = 'telescope.nvim' }
)
return return
end end
match_bracket(entry.value, stashes) match_bracket(entry.value, stashes)