2EF74 |
CMD_PLUS
|
( $ → )
Inserts string at current cursor position
in EditLine.
|
2F194 |
CMD_PLUS2
|
( $ → )
Replaces entire current EditLine with new
string. When there is not enough memory
to copy the string on stack level 1,
moves the string out of TEMPOB . You
must be careful that the string is not
referenced in any way. The cursor is
moved to the end of the new string.
|
2F195 |
CMD_PLUS3
|
( $ → )
Same as CMD_PLUS2 , but the cursor
position is not changed. Useful when
restoring a command line context after
HALT .
|
2EF97 |
InsertEcho
|
( $ → )
Inserts string at current cursor position
in EditLine.
|
2EEE4 |
Echo$Key
|
( $/chr → )
Same as CMD_PLUS .
|
2EEE3 |
EchoChrKey
|
( $/chr → )
Same as CMD_PLUS , but first ?TogU/LCase .
|
2F11C |
Echo$NoChr00
|
( $ → )
Inserts string at current cursor position
in EditLine.
|
25EC1 |
DoDelim
|
( → )
Takes a character or string from the
runstream and inserts it.
|
25EC2 |
DoDelims
|
( → )
Takes a character or a string from the
runstream, inserts it and moves the cursor
back by one character.
|
25795 |
INSERT_MODE
|
( → )
Turns insert mode on. In insert mode, new
characters do not overwrite old ones.
|
2577F |
(TOGGLE_I/R)
|
( → )
Toggles the insert/overwrite flag.
|
2ACB0 |
?TogU/LCase
|
( chr → chr' )
Toggle upper/lowercase of character if some
condition is fulfilled.
|
25790 |
INSERT?
|
( → flag )
Returns TRUE if insert mode is active.
|