Skip to content
Snippets Groups Projects

Resolve "Add zsh, fish, and bash shell completion helper function generation as well as the related command"

2 files
+ 52
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -9,7 +9,7 @@ import { stateConfigFile } from '../config/ConfigFiles';
@@ -9,7 +9,7 @@ import { stateConfigFile } from '../config/ConfigFiles';
import semver from 'semver/preload';
import semver from 'semver/preload';
import { version } from '../config/Version';
import { version } from '../config/Version';
import Config from '../config/Config';
import Config from '../config/Config';
import {getBashCompletion} from '../helpers/AutoCompletionHelper';
import {getBashCompletion, getFishCompletion} from '../helpers/AutoCompletionHelper';
class CommanderApp {
class CommanderApp {
@@ -45,6 +45,7 @@ class CommanderApp {
@@ -45,6 +45,7 @@ class CommanderApp {
this.registerCommands();
this.registerCommands();
getBashCompletion(this.program, "bash_completion.sh")
getBashCompletion(this.program, "bash_completion.sh")
 
getFishCompletion(this.program, "dojo.fish")
this.program.parse();
this.program.parse();
}
}
Loading