blob: 38383dd53e18dd29414cd4e01acfcd0f282553a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package tui
import common "ior/internal/tui/common"
// KeyMap groups all key bindings shared by TUI screens.
type KeyMap = common.KeyMap
// Keys contains the default shared key map.
var Keys = common.Keys
// DefaultKeyMap builds the default key bindings used by models.
func DefaultKeyMap() KeyMap {
return common.DefaultKeyMap()
}
|