Class: Toys::Completion::Context

Inherits:
Object
  • Object
show all
Defined in:
core-docs/toys/completion.rb

Overview

Defined in the toys-core gem

The context in which to determine completion candidates.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cli:, previous_words: [], fragment_prefix: "", fragment: "", **params) ⇒ Context

Create a completion context

Parameters:

  • cli (Toys::CLI)

    The CLI being run. Required.

  • previous_words (Array<String>) (defaults to: [])

    Array of complete strings that appeared prior to the fragment to complete.

  • fragment_prefix (String) (defaults to: "")

    A prefix in the fragment that does not participate in completion. (e.g. "key=")

  • fragment (String) (defaults to: "")

    The string fragment to complete.

  • params (Hash)

    Miscellaneous context data



32
33
34
# File 'core-docs/toys/completion.rb', line 32

def initialize(cli:, previous_words: [], fragment_prefix: "", fragment: "", **params)
  # Source available in the toys-core gem
end

Instance Attribute Details

#cliToys::CLI (readonly)

The CLI being run.

Returns:



50
51
52
# File 'core-docs/toys/completion.rb', line 50

def cli
  @cli
end

#fragmentString (readonly)

The current string fragment to complete

Returns:

  • (String)


68
69
70
# File 'core-docs/toys/completion.rb', line 68

def fragment
  @fragment
end

#fragment_prefixString (readonly)

A non-completed prefix for the current fragment.

Returns:

  • (String)


62
63
64
# File 'core-docs/toys/completion.rb', line 62

def fragment_prefix
  @fragment_prefix
end

#previous_wordsArray<String> (readonly)

All previous words.

Returns:

  • (Array<String>)


56
57
58
# File 'core-docs/toys/completion.rb', line 56

def previous_words
  @previous_words
end

Instance Method Details

#[](key) ⇒ Object Also known as: get

Get data for arbitrary key.

Parameters:

  • key (Symbol)

Returns:

  • (Object)


75
76
77
# File 'core-docs/toys/completion.rb', line 75

def [](key)
  # Source available in the toys-core gem
end

#arg_parserToys::ArgParser

Current ArgParser indicating the status of argument parsing up to this point.

Returns:



103
104
105
# File 'core-docs/toys/completion.rb', line 103

def arg_parser
  # Source available in the toys-core gem
end

#argsArray<String>

An array of complete arguments passed to the tool, prior to the fragment to complete.

Returns:

  • (Array<String>)


93
94
95
# File 'core-docs/toys/completion.rb', line 93

def args
  # Source available in the toys-core gem
end

#toolToys::ToolDefinition

The tool being invoked, which should control the completion.



84
85
86
# File 'core-docs/toys/completion.rb', line 84

def tool
  # Source available in the toys-core gem
end

#with(**delta_params) ⇒ Toys::Completion::Context

Create a new completion context with the given modifications.

Parameters:

  • delta_params (Hash)

    Replace context data.

Returns:



42
43
44
# File 'core-docs/toys/completion.rb', line 42

def with(**delta_params)
  # Source available in the toys-core gem
end