(keymap: OpenTuiKeymap)
| 126 | } |
| 127 | |
| 128 | function registerKeyAliases(keymap: OpenTuiKeymap) { |
| 129 | return keymap.appendBindingExpander((ctx) => { |
| 130 | const key = expandKeyAliases(ctx.input) |
| 131 | if (!key) return |
| 132 | return [{ key, displays: ctx.displays }] |
| 133 | }) |
| 134 | } |
| 135 | |
| 136 | const inputCommands = [ |
| 137 | "input.move.left", |
no test coverage detected