CompletionCommandRunner<T> constructor

CompletionCommandRunner<T>(
  1. String executableName,
  2. String description
)

A CommandRunner that takes care of installing shell completion scripts and handle completion requests.

Implementation

CompletionCommandRunner(super.executableName, super.description) {
  addCommand(HandleCompletionRequestCommand<T>());
  addCommand(InstallCompletionFilesCommand<T>());
  addCommand(UnistallCompletionFilesCommand<T>());
}