enum

TermBuf::Input::SequenceScanner::Kind

Inherits Enum < Comparable < Value < Object

What a chunk of bytes looks like, which is all that can be told from the bytes alone. Whether an escape sequence is a reply the application asked for or an arrow key someone pressed is not visible here: both are Kind::Sequence, and Patterns is what tells them apart.

Constants

Sequence = 0

A complete escape sequence.

Text = 1

Ordinary characters.

Instance methods

sequence?

Returns true if this enum value equals Sequence

Source
text?

Returns true if this enum value equals Text

Source