# Show-Completed-Command

The `Show-Complete-Command` option determines whether CommandPrompter should send the completed command to the player before dispatching it.

#### Usage

You can configure the `Show-Complete-Command` by editing the "config.yml" file as follows:

```yaml
# Should CommandPrompter send
# the completed command to the
# player before dispatching it?
Show-Complete-Command: true
```

In this example, the option to show the completed command is enabled (`true`).

#### Explanation

Enabling the `Show-Complete-Command` option allows players to view the final form of their command before it is executed. This feature can help prevent mistakes and ensure that the intended command is dispatched accurately.

#### Example

To disable the display of the completed command, use the following configuration:

```yaml
Show-Complete-Command: false
```

This will prevent the completed command from being shown to the player.
