2021-01-08 11:10:24 -05:00
|
|
|
# typed: true
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "cli/parser"
|
|
|
|
require "completions"
|
|
|
|
|
|
|
|
module Homebrew
|
|
|
|
extend T::Sig
|
|
|
|
|
|
|
|
module_function
|
|
|
|
|
|
|
|
sig { returns(CLI::Parser) }
|
|
|
|
def completions_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
|
|
|
`completions` [<subcommand>]
|
|
|
|
|
2021-01-12 16:30:29 -05:00
|
|
|
Control whether Homebrew automatically links external tap shell completion files.
|
2021-01-08 11:10:24 -05:00
|
|
|
Read more at <https://docs.brew.sh/Shell-Completion>.
|
|
|
|
|
|
|
|
`brew completions` [`state`]:
|
|
|
|
Display the current state of Homebrew's completions.
|
|
|
|
|
|
|
|
`brew completions` (`link`|`unlink`):
|
|
|
|
Link or unlink Homebrew's completions.
|
|
|
|
EOS
|
|
|
|
|
2021-01-10 14:26:40 -05:00
|
|
|
named_args %w[state link unlink], max: 1
|
2021-01-08 11:10:24 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def completions
|
|
|
|
args = completions_args.parse
|
|
|
|
|
|
|
|
case args.named.first
|
|
|
|
when nil, "state"
|
|
|
|
if Completions.link_completions?
|
|
|
|
puts "Completions are linked."
|
2021-01-08 17:11:20 -05:00
|
|
|
else
|
|
|
|
puts "Completions are not linked."
|
2021-01-08 11:10:24 -05:00
|
|
|
end
|
|
|
|
when "link"
|
|
|
|
Completions.link!
|
|
|
|
puts "Completions are now linked."
|
|
|
|
when "unlink"
|
|
|
|
Completions.unlink!
|
|
|
|
puts "Completions are no longer linked."
|
|
|
|
else
|
|
|
|
raise UsageError, "unknown subcommand: #{args.named.first}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|