Drive 2.0.0 (464f9a3), OpenCode V2 e73fa5f476.
ui.press("ctrl+u") sends the text ctrl+u to the composer instead of failing or sending the chord. The probe then typed /alpha after it, so the composer read ctrl+u/alpha and the slash menu never opened; the only symptom was a UiWaitTimeoutError several steps later.
yield* ui.press("ctrl+u") // typed literally
yield* ui.press("u", { ctrl: true }) // intended form
Expected: either parse the common mod+key spelling or reject a multi-character key that is not a known named key (escape, enter, ...) with an OperationError at the call site.
Actual: silently typed as text.
Log: .drive-output/plugin-registry/candidate-11.log (frame shows ctrl+u/alpha in the composer).
Drive 2.0.0 (
464f9a3), OpenCode V2e73fa5f476.ui.press("ctrl+u")sends the textctrl+uto the composer instead of failing or sending the chord. The probe then typed/alphaafter it, so the composer readctrl+u/alphaand the slash menu never opened; the only symptom was aUiWaitTimeoutErrorseveral steps later.Expected: either parse the common
mod+keyspelling or reject a multi-characterkeythat is not a known named key (escape,enter, ...) with anOperationErrorat the call site.Actual: silently typed as text.
Log:
.drive-output/plugin-registry/candidate-11.log(frame showsctrl+u/alphain the composer).