Skip to main content
Module

x/cliffy/command/completions/zsh.ts

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
import { Command } from "../command.ts";import { dim, italic } from "../deps.ts";import { ZshCompletionsGenerator } from "./_zsh_completions_generator.ts";
/** Generates zsh completions script. */export class ZshCompletionsCommand extends Command { #cmd?: Command; public constructor(cmd?: Command) { super(); this.#cmd = cmd; return this .description(() => { const baseCmd = this.#cmd || this.getMainCommand(); return `Generate shell completions for zsh.
To enable zsh completions for this program add following line to your ${ dim(italic("~/.zshrc")) }:
${dim(italic(`source <(${baseCmd.getPath()} completions zsh)`))}`; }) .noGlobals() .action(() => { const baseCmd = this.#cmd || this.getMainCommand(); console.log(ZshCompletionsGenerator.generate(baseCmd)); }); }}