Package

grizzled

readline

Permalink

package readline

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.readline package provides a common front-end API to various underlying readline and readline-like implementations, including GNU Readline, Editline, and JLine.

Deprecated

Use JLine2 <https://github.com/jline/jline2>

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. readline
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait Completer extends AnyRef

    Permalink

    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.

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  2. trait CompleterHelper extends AnyRef

    Permalink

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  3. sealed abstract class CompletionToken extends AnyRef

    Permalink

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  4. trait History extends AnyRef

    Permalink

    Models a Readline history: an object that holds previously read lines.

    Models a Readline history: an object that holds previously read lines.

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  5. case class LineToken(value: String) extends CompletionToken with Product with Serializable

    Permalink

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  6. class ListCompleter extends Completer

    Permalink

    A completer that completes from a list of items.

    A completer that completes from a list of items.

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  7. class NullCompleter extends Completer

    Permalink

    A completer that doesn't do anything.

    A completer that doesn't do anything. Useful as a default.

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  8. class PathnameCompleter extends Completer

    Permalink

    A completer that completes path names.

    A completer that completes path names. Handles "~" expansion, but only for the current user.

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  9. trait Readline extends AnyRef

    Permalink

    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

    Deprecated

    Use JLine <https://github.com/jline/jline2>

Deprecated Value Members

  1. object Cursor extends CompletionToken with Product with Serializable

    Permalink

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  2. object Delim extends CompletionToken with Product with Serializable

    Permalink

    Deprecated

    Use JLine <https://github.com/jline/jline2>

  3. object Readline

    Permalink

    Companion factory object, used to instantiate particular readline implementations.

    Companion factory object, used to instantiate particular readline implementations.

    Deprecated

    Use JLine <https://github.com/jline/jline2>

Inherited from AnyRef

Inherited from Any

Ungrouped