We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd2a59f commit 60bb6bfCopy full SHA for 60bb6bf
lua/telescope/_extensions/notify.lua
@@ -64,6 +64,10 @@ local telescope_notifications = function(opts)
64
actions.select_default:replace(function()
65
actions.close(prompt_bufnr)
66
local selection = action_state.get_selected_entry()
67
+ if selection == nil then
68
+ return
69
+ end
70
+
71
local notification = selection.value
72
local buf = vim.api.nvim_create_buf(false, true)
73
local notif_buf = NotificationBuf(buf, notification, { config = notify._config() })
0 commit comments