Files
Hyprdots/lua/binds/passthrough.lua
T
2026-06-12 17:12:25 -04:00

22 lines
338 B
Lua

local bind = require("lua.lib.bind")
local M = {}
M.binds = {
{
keys = bind.with_leader("P"),
dispatcher = hl.dsp.submap("pass_through"),
desc = "Pass through submap",
},
}
M.submaps = {
pass_through = {
{
keys = bind.with_leader("escape"),
dispatcher = hl.dsp.submap("reset"),
},
},
}
return M