# Cancel-Keyword

The `Cancel-Keyword` option determines the word that cancels command prompting.

#### Usage

You can configure the `Cancel-Keyword` by editing the "config.yml" file as follows:

```yaml
# Word that cancels command
# prompting.
Cancel-Keyword: cancel
```

In this example, the cancel keyword is set to "cancel".

#### Explanation

The `Cancel-Keyword` is the specific word that, when entered by a user, cancels the prompt queue. It provides users with a way to exit out of the prompt queue without executing any command.

#### Example

To change the cancel keyword to "exit", use the following configuration:

```yaml
Cancel-Keyword: exit
```

This will set "exit" as the keyword that cancels command prompting.
