) {
this.usage.getCommands().forEach(usageCommand => {
if (args.indexOf(commandName) === -1) {
if (!this.zshShell) {
completions.push(commandName);
const desc = usageCommand[1] || '';
completions.push(commandName.replace(/:/g, '\\:') + ':' + desc);
}
});
}