module
Tabular::Completers
Overview
A collection of convenience functions to handle completion situations.
Defined in:
tabular/completers.crClass Method Summary
-
.install(args = ARGV)
A convenience completer for a CLI's completion installer command.
Class Method Detail
def self.install(args = ARGV)
#
A convenience completer for a CLI's completion installer command.
if Tabular.prompt?
ARGV.shift
if ARGV[0]? == "completion"
ARGV.shift
Tabular::Completers.install
end
end