From 833a54839753a79253368d95d231aba93d0583ef Mon Sep 17 00:00:00 2001 From: Taken Date: Sun, 27 Apr 2025 20:35:13 +0200 Subject: [PATCH] Added command for history --- lua/taken/plugins/snacks.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/taken/plugins/snacks.lua b/lua/taken/plugins/snacks.lua index 03dd8cc..86450de 100644 --- a/lua/taken/plugins/snacks.lua +++ b/lua/taken/plugins/snacks.lua @@ -8,5 +8,9 @@ return { notifier = {}, scroll = {}, }) + + vim.api.nvim_create_user_command("NotifyHistory", function() + Snacks.notifier.show_history() + end, { desc = "Show notification history" }) end, }