From 231bcd8bf1dd9697e3c937047f1eb8f85d49ec63 Mon Sep 17 00:00:00 2001 From: "Chris @ Web" Date: Sun, 22 Dec 2024 22:32:01 +0100 Subject: [PATCH] .config/nvim/lua/syss-report-selector/init.lua aktualisiert --- .config/nvim/lua/syss-report-selector/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/lua/syss-report-selector/init.lua b/.config/nvim/lua/syss-report-selector/init.lua index 2b17d07..92e9b77 100644 --- a/.config/nvim/lua/syss-report-selector/init.lua +++ b/.config/nvim/lua/syss-report-selector/init.lua @@ -29,13 +29,13 @@ end local debug = function(msg, title) msg = msg or "" title = title or "" - Snacks.notifier.notify(msg, "debug", { style = "compact", timeout = 10000, title = title }) + vim.notify(msg, "debug", { style = "compact", timeout = 10000, title = title }) end local info = function(msg, title) msg = msg or "" title = title or "" - Snacks.notifier.notify(msg, "info", { style = "compact", timeout = 10000, title = title }) + vim.notify(msg, "info", { style = "compact", timeout = 10000, title = title }) end M.directory_picker = function(opts)