Term::ReadLine::Zoid::Base(3) atomic routines

METHODS


ANSI stuff

"cursor_at($x, $y)"
Positions the cursor on screen, dimensions are 1-based.
"clear_screen()"
Clear screen.
"title($string)"
Set terminal title to $string. When using for example xterm(1) this is the window name.
"print_length($string)"
Returns the printable length of $string, not counting (some) ansi sequences.

Private api

Methods for use in overload classes. Avoid using these methods from the application.

"bell()"
Notify the user of an error or limit.
"loop()"
Low level function used by readline. Calls "draw()" and "do_key()".
"beat()"
Method called by intervals while waiting for input, to be overloaded.
"read_key()"
Returns one key read from input (this is the named key, not the char when mapped).
"do_key($key)"
Execute a key, calls subroutine for a key binding or the default binding. If $key is undefined "read_key()" is called first.
"press($string)"
Do chars in $string like they were typed on the keyboard. Used for testing puposes and to make macros possible.

If you give more then one argument, these are considered individual characters, use this to press named keys.

"unread_key($string)"
Unshifts characters on the read buffer, arguments the same as "press()".
"key_name($chr)"
Returns a name for a character or character sequence.
"key_binding($key, $mode)"
Returns the keybinding for $key in $mode, mode defaults to the current one.
"bindchr($chr, $key)"
Bind a key name to a character, or a character sequence. All bindings of this kind are global (you're using only one keyboard, right ?).
"recalc_chr_map()"
Recalculates the chr map, you need to call this after deleting from %chr_names.
"print($lines, $pos)"
Low level function used by draw. Both arguments need to be array references.