MCPcopy
hub / github.com/antonmedv/codejar / isRedo

Function isRedo

codejar.ts:499–501  ·  view source on GitHub ↗
(event: KeyboardEvent)

Source from the content-addressed store, hash-verified

497 }
498
499 function isRedo(event: KeyboardEvent) {
500 return isCtrl(event) && event.shiftKey && getKeyCode(event) === 'Z'
501 }
502
503 function isCopy(event: KeyboardEvent) {
504 return isCtrl(event) && getKeyCode(event) === 'C'

Callers 2

shouldRecordFunction · 0.85
handleUndoRedoFunction · 0.85

Calls 2

isCtrlFunction · 0.85
getKeyCodeFunction · 0.85

Tested by

no test coverage detected