in pkg/selector/outputs/tableView.go [191:214]
func createTableKeyMap() *table.KeyMap {
keys := table.KeyMap{
RowDown: key.NewBinding(
key.WithKeys("down"),
),
RowUp: key.NewBinding(
key.WithKeys("up"),
),
ScrollLeft: key.NewBinding(
key.WithKeys("left"),
),
ScrollRight: key.NewBinding(
key.WithKeys("right"),
),
PageDown: key.NewBinding(
key.WithKeys("shift+right"),
),
PageUp: key.NewBinding(
key.WithKeys("shift+left"),
),
}
return &keys
}