autoload
Void _autoload (String fun, String fn, ..., Integer n);
The _autoload
function is like the autoload
function except that
it takes n
pairs of function name (fun
) / filename (fn
) pairs.
For example,
_autoload ("fun_a", "file_a", "fun_b", "file_b", 2);
is equivalent to
autoload ("fun_a", "file_a");
autoload ("fun_b", "file_b");
autoload
evalbuffer
Void evalbuffer ();
This function causes the current buffer to be sent to the S-Lang interpreter for evaluation. If an error is encountered while parsing the buffer, the cursor will be placed at the location of the error.
evalfile
get_jed_library_path
String get_jed_library_path ();
This function returns the current search path for jed library files.
The path may be set using the function set_jed_library_path
.
set_jed_library_path
set_jed_library_path
Void set_jed_library_path (String p);
This function may be used to set the search path for library files.
Its parameter p
may be a comma separated list of directories to
search. When the editor is first started, the path is initialized
from the JED_ROOT
, or JED_LIBRARY
environment variables.
get_jed_library_path