```
Commands.enableAll()
``
```
Commands.changeSpoken 'package:command-id', 'new spoken'
``
Useful if the speech recognition often spells a command word incorrectly, such as `cursor:down` @[email protected] being misrecognized as @[email protected]
```
Commands.addMisspellings 'cursor:down', ['dune']
``
String.
Vocal trigger
Boolean.
Bypasses history window and repetition commands i.e creek
Boolean. Default: `false`
Should command be enabled or disabled out-of-the-box.
`String`
Default: `"individual"`
The `grammarType` parameter tells the parser how this command should fit in a phrase, and what types of arguments it should receive.
The available grammar types are:
String
Default: `"global"` or defined by package
Scope for this command.
Boolean
Default: true
Non-continuous commands only trigger when in the beginning of an utterance.
String.
Alternative to spoken. Misspellings are treated the same as spoken except they are not added to dragon's vocabulary or commands. This is because we don't want to reinforce recognition of the misspelled version.
Boolean
Default: `false`
Set this to true if given command will often be preceded by symbols:space 🔉skoosh🔉. This will generate additional terms for common vocabulary sequences, boosting recognition accuracy.
Boolean. Default: `false`
Set to true if you expect this command to often be followed by repetition commands.
Boolean
Default: `true`
Should this command be added to dragon's commands. If the vocal trigger is very easily recognizable by Dragon, set this to false to preserve RAM.
Boolean. Default: true
Should this command be added to dragon's vocabulary
see auto spacing
see auto spacing
String.
If preceded by a grammarType: 'singleSearch' command, what should be searched for. See symbols and selection packages
String
Description of given command.
Array of strings.
UI search parameter.
Boolean
Default: `true`
Special case (internal) commands which aren't meant to to be triggered by voice, thus not needing a `spoken` attribute and should be bypassed by the parser.
TODO