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

Function createPasteKey

src/ink/parse-keypress.ts:67–81  ·  view source on GitHub ↗
(content: string)

Source from the content-addressed store, hash-verified

65const SGR_MOUSE_RE = /^\x1b\[<(\d+);(\d+);(\d+)([Mm])$/
66
67function createPasteKey(content: string): ParsedKey {
68 return {
69 kind: 'key',
70 name: '',
71 fn: false,
72 ctrl: false,
73 meta: false,
74 shift: false,
75 option: false,
76 super: false,
77 sequence: content,
78 raw: content,
79 isPasted: true,
80 }
81}
82
83/** DECRPM status values (response to DECRQM) */
84export const DECRPM_STATUS = {

Callers 1

parseMultipleKeypressesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected