// NewKeymap creates a new Keymap struct func NewKeymap(config map[string]string, actions map[string][]string) Keymap { return Keymap{config, actions, keyseq.New()} }
func NewKeymap(config map[string]string) Keymap { return Keymap{config, keyseq.New()} }