Models a completer: An object that, given a line of input and a token within that line, finds possible completions for the token.
Models a completer: An object that, given a line of input and a token within that line, finds possible completions for the token.
Use JLine <https://github.com/jline/jline2>
Use JLine <https://github.com/jline/jline2>
Use JLine <https://github.com/jline/jline2>
Models a Readline history: an object that holds previously read lines.
Models a Readline history: an object that holds previously read lines.
Use JLine <https://github.com/jline/jline2>
Use JLine <https://github.com/jline/jline2>
A completer that completes from a list of items.
A completer that completes from a list of items.
Use JLine <https://github.com/jline/jline2>
A completer that doesn't do anything.
A completer that doesn't do anything. Useful as a default.
Use JLine <https://github.com/jline/jline2>
A completer that completes path names.
A completer that completes path names. Handles "~" expansion, but only for the current user.
Use JLine <https://github.com/jline/jline2>
Defines the readline-like functionality supported by this API.
Defines the readline-like functionality supported by this API. A
Readline class provides:
- a means to read lines of input from (presumably) a terminal - a history mechanism - an optional tab-completion capability
Use JLine <https://github.com/jline/jline2>
Use JLine <https://github.com/jline/jline2>
Use JLine <https://github.com/jline/jline2>
Companion factory object, used to instantiate particular readline implementations.
Companion factory object, used to instantiate particular readline implementations.
Use JLine <https://github.com/jline/jline2>
This package is deprecated and will be removed in a future version of this library. JLine2 is a better alternative, and it's more consistent with other Scala tools.
The
grizzled.readlinepackage provides a common front-end API to various underlying readline and readline-like implementations, including GNU Readline, Editline, and JLine.Use JLine2 <https://github.com/jline/jline2>