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