IME composition
Svelte
open
Svelte command palette runs a command on the IME confirm Enter
Command palette runs the highlighted command on the IME confirm Enter
surf · deta/surf
Symptom
Typing a CJK query in the command palette and pressing Enter to confirm the IME runs the highlighted command instead of finishing the conversion.
Minimal repro
1. Open the command palette. 2. Compose a Japanese search term with the IME. 3. Press Enter to commit the conversion. 4. The first/highlighted command fires prematurely.
Fix
Add `if (e.isComposing) return` at the top of the palette input keydown handler. Svelte exposes the native KeyboardEvent, so e.isComposing works directly.