(id: Parameters<typeof matchesSequenceToken>[2])
| 114 | // When Vim mode is off, the single-key Vim shortcuts (j/k/gg/G/o//…) are |
| 115 | // disabled — only arrows/Enter/Escape navigate. (songgenqing report) |
| 116 | const seq = (id: Parameters<typeof matchesSequenceToken>[2]): boolean => |
| 117 | vimMode && matchesSequenceToken(e, overrides, id) |
| 118 | const consume = (): void => { |
| 119 | e.preventDefault() |
| 120 | e.stopImmediatePropagation() |
no test coverage detected