MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isShiftKey

Function isShiftKey

src/ink/parse-keypress.ts:423–438  ·  view source on GitHub ↗
(code: string)

Source from the content-addressed store, hash-verified

421]
422
423const isShiftKey = (code: string): boolean => {
424 return [
425 '[a',
426 '[b',
427 '[c',
428 '[d',
429 '[e',
430 '[2$',
431 '[3$',
432 '[5$',
433 '[6$',
434 '[7$',
435 '[8$',
436 '[Z',
437 ].includes(code)
438}
439
440const isCtrlKey = (code: string): boolean => {
441 return [

Callers 1

parseKeypressFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected