Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ITerm2DA1Parser ¶
type ITerm2DA1Parser struct {
// contains filtered or unexported fields
}
for queries.ITerm2PropVersion+queries.DA1 queries
func (*ITerm2DA1Parser) Parse ¶
func (p *ITerm2DA1Parser) Parse(r rune) bool
type ParserFunc ¶
ParserFunc returns true when end of terminal reply is reached.
var StopOnAlpha ParserFunc = func(r rune) bool {
return (r >= 'A' && r <= 'Z') || (r >= 'a' && r <= 'z')
}
var StopOnBackSlash ParserFunc = func(r rune) bool { return r == '\\' }
var StopOnC ParserFunc = func(r rune) bool { return r == 'c' }
var StopOnR ParserFunc = func(r rune) bool { return r == 'R' }
func (ParserFunc) Parse ¶
func (f ParserFunc) Parse(r rune) bool
Parse returns true when end of terminal reply is reached.
Click to show internal directories.
Click to hide internal directories.