### Describe the change Add a config to the GitHubConfig called `CompletionMode` that covers how argument completion is done. Alternatives: - StartsWith - Will just complete the rest of the word you have typed. `$wordToComplete*` - Contains - Will find all alternatives that contain the word you have typed. `*$wordToComplete*`. Update all the argument completers so they adhere to the setting.