conntextual.ui.channel.suggester
index
/home/vkottler/src/vkottler/workspace/conntextual/conntextual/ui/channel/suggester.py

A module implementing an input suggester for the channel-environment
command widget.

 
Classes
       
textual.suggester.Suggester(abc.ABC)
CommandSuggester

 
class CommandSuggester(textual.suggester.Suggester)
    CommandSuggester(*, use_cache: 'bool' = True, case_sensitive: 'bool' = False) -> 'None'
 
An input suggester for channel environment commands.
 
 
Method resolution order:
CommandSuggester
textual.suggester.Suggester
abc.ABC
builtins.object

Methods defined here:
async get_suggestion(self, value: str) -> Optional[str]
Get an input suggestion.

Static methods defined here:
create(processor: runtimepy.channel.environment.command.processor.ChannelCommandProcessor) -> 'CommandSuggester'
A method for creating a command suggester.

Data and other attributes defined here:
__abstractmethods__ = frozenset()
__annotations__ = {'processor': <class 'runtimepy.channel.environment.command.processor.ChannelCommandProcessor'>}

Methods inherited from textual.suggester.Suggester:
__init__(self, *, use_cache: 'bool' = True, case_sensitive: 'bool' = False) -> 'None'
Create a suggester object.
 
Args:
    use_cache: Whether to cache suggestion results.
    case_sensitive: Whether suggestions are case sensitive or not.
        If they are not, incoming values are casefolded before generating
        the suggestion.

Data descriptors inherited from textual.suggester.Suggester:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

 
Data
        Optional = typing.Optional