(id: Parameters<typeof matchesSequenceToken>[2])
| 289 | // When Vim mode is off, the single-key Vim shortcuts (j/k/x/d/gg/G/o/r//…) |
| 290 | // are disabled — only arrows/Enter/Escape navigate. (songgenqing report) |
| 291 | const seq = (id: Parameters<typeof matchesSequenceToken>[2]): boolean => |
| 292 | vimMode && matchesSequenceToken(e, overrides, id) |
| 293 | const consume = (): void => { |
| 294 | e.preventDefault() |
| 295 | e.stopImmediatePropagation() |
no test coverage detected