add visibility handling for the floating window

This commit is contained in:
2025-12-23 22:31:39 +01:00
parent e92c8476c2
commit 463d0ae2f7
5 changed files with 134 additions and 25 deletions

View File

@@ -1,10 +1,10 @@
local config = require("test-samurai.config")
local core = require("test-samurai.core")
local config = require("test-samurai.config")
local M = {}
function M.setup(opts)
config.setup(opts or {})
config.set(opts or {})
core.setup()
end
@@ -12,4 +12,8 @@ function M.test_nearest()
core.run_nearest()
end
function M.show_output()
core.show_output()
end
return M