$#! | |
__breaksw | |
__lexicalblock | |
__regress_op | |
__regress_replacement | |
_bad_key | |
_chg_properties | |
_default | |
_extension | |
_fatal_error | |
_init | |
_invalid_key | |
_prompt_begin | |
_prompt_end | |
_startup_complete | |
A | |
abort | |
above | |
above_eq | |
abs | |
access | |
acos | |
arg_list | |
array | |
asin | |
assign_to_key | |
atan | |
atan2 | |
atoi | |
attach_buffer | |
attach_syntax | |
autoload | |
B | |
backspace | |
basename | |
beep | |
beginning_of_line | |
below | |
below_eq | |
bless | |
bookmark_list | |
bool | |
borders | |
break |
Switch break statement.
__breaksw;
Lexical scope.
__lexicalblock( .... block ... );
Regression operations.
int __regress_op( ... )
Replacment regression testing.
declare __regress_replacement( ... )
Command prompt unknown key callback.
string _bad_key()
Property change event.
void _chg_properties()
Default extension handler.
void _default( string ext )
Buffer load handler.
void _extension( string ext )
Fatal condition callback.
void _fatal_error( int signo, string desc )
Internal macro initialisation.
void _init()
Invalid key event.
void _invalid_key()
Command prompt session begin callback.
void _prompt_begin( string prompt )
Command prompt session end callback.
void _prompt_end()
Startup event callback.
void _startup_complete( int mode )
Abnormal process.
void abort()
Greater than comparison.
int above( declare expr1, declare expr2 )
Greater than or equal comparison.
int above_eq( declare expr1, declare expr2 )
Absolute value.
int abs( int val )
Test file accessibility.
int access( string path, int mode )
Arc cosine.
float acos( float x )
Argument list.
list arg_list( [int eval = FALSE], [int start = 0], [int end = -1] )
Declare a array symbol.
array sym1, sym2 ...;
Arc sine.
float asin( float x )
Assign command to key or key sequence.
int assign_to_key( [string key], [string macro] )
Arctangent.
float atan( float x )
Arctangent division.
float atan2( float y, float x )
Convert string to a decimal number.
int atoi( string str, [int svalue = TRUE] )
Attach a buffer to a window.
void attach_buffer( int bufnum )
Attach a syntax to a buffer.
int attach_syntax( int|string syntable )
Register location of one or more macros.
void autoload( string filename, string function, ... )
Delete character to the left of the cursor.
void backspace( [int num = 1] )
Return the last component of a pathname.
int basename( string pathname, [string suffix] )
Issue a beep sound.
int beep( [int freq], [int duration] )
Goto beginning of line.
int beginning_of_line()
Less than comparison.
int below( declare expr1, declare expr2 )
Less than or equal comparison.
int below_eq( declare expr1, declare expr2 )
Associate an object with a class/module.
int bless( [int ref], [string classname] )
Retrieve existing bookmark list.
list bookmark_list()
Declare a boolean symbol.
bool sym1, sym2 ...;
Set window border status.
int borders( [int borders] )
break statement.
break;