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