.config/nvim/lua/syss-report-selector/init.lua aktualisiert

This commit is contained in:
2024-12-22 22:32:01 +01:00
parent 73afd5086b
commit 231bcd8bf1

View File

@@ -29,13 +29,13 @@ end
local debug = function(msg, title) local debug = function(msg, title)
msg = msg or "" msg = msg or ""
title = title 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 end
local info = function(msg, title) local info = function(msg, title)
msg = msg or "" msg = msg or ""
title = title 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 end
M.directory_picker = function(opts) M.directory_picker = function(opts)