module Tabular::Completers

Overview

A collection of convenience functions to handle completion situations.

Defined in:

tabular/completers.cr

Class Method Summary

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

[View source]