22 lines
338 B
Lua
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
|