1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-09-22 04:35:55 -04:00
neonmodem/ui/toolkit/keymap.go
2023-01-03 15:16:34 -05:00

31 lines
498 B
Go

package toolkit
import "github.com/charmbracelet/bubbles/key"
func (tk *ToolKit) KeymapAdd(id string, help string, keys ...string) {
keysview := ""
for i, k := range keys {
if i > 0 {
keysview += "/"
}
keysview += k
}
binding := key.NewBinding(
key.WithKeys(keys...),
key.WithHelp(keysview, help),
)
tk.keybindings[id] = binding
return
}
func (tk *ToolKit) KeymapGet(id string) key.Binding {
if k, ok := tk.keybindings[id]; ok {
return k
}
return key.NewBinding()
}