257A2 |
EditLExists?
|
( → flag )
Does an EditLine exist?
|
2EEED |
NoEditLine?
|
( → flag )
Does no EditLine exist?
|
2F196 |
RCL_CMD
|
( → $ )
Returns a copy of the current command
line to the stack. Same as EDITLINE$ .
|
2EEEB |
EDITLINE$
|
( → $ )
Returns a copy of the current command
line to the stack. Same as RCL_CMD .
|
2F197 |
RCL_CMD2
|
( → $ )
Similar to RCL_CMD , but if there is not
enough memory to copy the EditLine to
the stack, it will move the current
EditLine into TEMPOB . Of course, this
will delete the current EditLine.
|
2EF87 |
RCL_CMD_POS
|
( → # )
Recalls the current cursor position.
|
26585 |
CURSOR@
|
( → # )
Recalls the current cursor position.
|
26594 |
(CURSOR_PART)
|
( → # )
Recalls the current cursor row (line). There
is no such entry for the column, but
CURSOR_OFF FIRSTC@ #+
can be used for this purpose.
|
2F158 |
(ChrAtCur)
|
( → chr )
Returns the character under the cursor. At
the end of the file, returns CHR_00 .
|
2EEEA |
CURSOR_END?
|
( → flag )
Checks if the cursor is at the end of a line
or at the end of the file. Works by
checking the current character against
newline and CHR_00 .
|
2EF91 |
CAL_CURS_POS
|
( #l #c → # )
Computes a position in the current
EditLine from line and column number.
The result can be used by STO_CURS_POS
to move the cursor to that location. If #line
is larger than the number of lines in the
EditLine, computes the position of the last
line.
|
2EF90 |
CAL_CURS_POS_VIS
|
( #l #c → # )
Similar to CAL_CURS_POS , but will ignore
invisible characters. The result can be
used by STO_CURS_POS_VIS to move the
cursor to that location.
|
2F199 |
RCL_CMD_MODE
|
( → $ )
Recalls a string with current editor
settings. Can be used together with
STO_CMD_MODE to save and restore the
state of the EditLine, when temporarily
leaving the editor with HALT or when
calling a program which must temporarily
change settings.
|
2F198 |
STO_CMD_MODE
|
( $ → )
Stores a mode string similar to the one
obtained by RCL_CMD_MODE .
|
26599 |
(CURSOR_PART+)
|
|
2659E |
(CURSOR_PART-)
|
|
265A3 |
(CURPART->1)
|
|
265A8 |
(CURPART->CR+)
|
|
26562 |
(CURSORPLUS)
|
|
26567 |
(CURSORMINUS)
|
|
26571 |
(?CURSOR+)
|
|
2658F |
(CURSOR-)
|
|