Closed zackAJ closed 2 months ago
Hey, thank you for this great plugin.
I needed the ability to hide some stuff on my screen in case screenkey is active.
I exposed the active variable via a getter
local notify = require("notify") local toggleScreenKey = function() vim.cmd("Screenkey toggle") -- change notification position notify.setup({ top_down = screenkey.is_active(), }) end vim.keymap.set("n", "<leader>tk", toggleScreenKey, { desc = "[T]oggle [S]creen[K]ey" })
Nice
Hey, thank you for this great plugin.
Problem
I needed the ability to hide some stuff on my screen in case screenkey is active.
Solution
I exposed the active variable via a getter
Example