Prompt the user to edit a command with a (possibly empty) starting value.
(self, *command_str: str)
| 279 | |
| 280 | @command.command("console.command") |
| 281 | def console_command(self, *command_str: str) -> None: |
| 282 | """ |
| 283 | Prompt the user to edit a command with a (possibly empty) starting value. |
| 284 | """ |
| 285 | quoted = " ".join(command_lexer.quote(x) for x in command_str) |
| 286 | if quoted: |
| 287 | quoted += " " |
| 288 | signals.status_prompt_command.send(partial=quoted) |
| 289 | |
| 290 | @command.command("console.command.confirm") |
| 291 | def console_command_confirm( |
no test coverage detected