( mode: PromptInputMode, )
| 345 | ] satisfies Permutations<Exclude<PromptInputMode, EditablePromptInputMode>>) |
| 346 | |
| 347 | export 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. |
no test coverage detected