(cmd: QueuedCommand)
| 357 | * the user's input. |
| 358 | */ |
| 359 | export function isQueuedCommandEditable(cmd: QueuedCommand): boolean { |
| 360 | return isPromptInputModeEditable(cmd.mode) && !cmd.isMeta |
| 361 | } |
| 362 | |
| 363 | /** |
| 364 | * Whether this queued command should render in the queue preview under the |
no test coverage detected