MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / onKeyDown

Function onKeyDown

apps/baseai.dev/src/components/Search.tsx:349–354  ·  view source on GitHub ↗
(event: KeyboardEvent)

Source from the content-addressed store, hash-verified

347 }
348
349 function onKeyDown(event: KeyboardEvent) {
350 if (event.key === 'k' && (event.metaKey || event.ctrlKey)) {
351 event.preventDefault();
352 setOpen(true);
353 }
354 }
355
356 window.addEventListener('keydown', onKeyDown);
357

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected