コード例 #1
0
ファイル: keymap.go プロジェクト: coodix/peco
// NewKeymap creates a new Keymap struct
func NewKeymap(config map[string]string, actions map[string][]string) Keymap {
	return Keymap{config, actions, keyseq.New()}

}
コード例 #2
0
ファイル: keymap.go プロジェクト: hirose31/peco
func NewKeymap(config map[string]string) Keymap {
	return Keymap{config, keyseq.New()}

}