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

Function kittyKeyboard

src/ink/terminal-querier.ts:76–81  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

74/** Query current Kitty keyboard protocol flags (CSI ? u).
75 * Terminal replies with CSI ? flags u or ignores. */
76export function kittyKeyboard(): TerminalQuery<KittyResponse> {
77 return {
78 request: csi('?u'),
79 match: (r): r is KittyResponse => r.type === 'kittyKeyboard',
80 }
81}
82
83/** DECXCPR: request cursor position with DEC-private marker (CSI ? 6 n).
84 * Terminal replies with CSI ? row ; col R. The `?` marker is critical —

Callers

nothing calls this directly

Calls 1

csiFunction · 0.85

Tested by

no test coverage detected