MCPcopy Index your code
hub / github.com/claude-code-best/claude-code / isPromptInputModeEditable

Function isPromptInputModeEditable

src/utils/messageQueueManager.ts:347–351  ·  view source on GitHub ↗
(
  mode: PromptInputMode,
)

Source from the content-addressed store, hash-verified

345] satisfies Permutations<Exclude<PromptInputMode, EditablePromptInputMode>>)
346
347export function isPromptInputModeEditable(
348 mode: PromptInputMode,
349): mode is EditablePromptInputMode {
350 return !NON_EDITABLE_MODES.has(mode)
351}
352
353/**
354 * Whether this queued command can be pulled into the input buffer via UP/ESC.

Callers 1

isQueuedCommandEditableFunction · 0.85

Calls 1

hasMethod · 0.45

Tested by

no test coverage detected