(id: Parameters<typeof matchesSequenceToken>[2])
| 297 | // When Vim mode is off, the single-key Vim shortcuts (j/k/gg/G/o/Space/1-3/…) |
| 298 | // are disabled — only arrows/Enter/Escape navigate. (songgenqing report) |
| 299 | const seq = (id: Parameters<typeof matchesSequenceToken>[2]): boolean => |
| 300 | vimMode && matchesSequenceToken(e, overrides, id) |
| 301 | const consume = (): void => { |
| 302 | e.preventDefault() |
| 303 | e.stopImmediatePropagation() |
no test coverage detected