Lugaru's Epsilon Programmer's Editor 14.04
Context:
|
Epsilon User's Manual and Reference > Getting Started > Configuration Variables > How Epsilon Finds its FilesSometimes Epsilon needs to locate one of its files. For example, Epsilon needs to read an .mnu file like gui.mnu or epsilon.mnu to determine what commands go in its menu bar.
Epsilon searches for the file in each directory named by the EPSPATH
configuration variable. This configuration variable should contain a
list of directories, separated by semicolons (or for Unix, colons).
Epsilon will then look for the file in each of these directories.
Under Windows, a directory named If there is no EPSPATH configuration variable, which is the usual case on non-Windows systems, Epsilon constructs a default one. It consists of the user's customization directory, then the parent of the directory containing Epsilon's executable. For Unix, the default EPSPATH also contains the directories /opt/epsilonVER and /usr/local/epsilonVER (where VER indicates the current version, such as 10.01). For Mac OS, it also contains the Misc and Resources subdirectories within its app bundle, just after your customization directory.
If the name of the directory with Epsilon's executable doesn't start
with Some flags can change the above behavior. The -w32 flag makes Epsilon look for files in the directory containing the Epsilon executable before trying the EPSPATH. The -w8 flag keeps Epsilon from including the executable's directory or its parent in the default EPSPATH. The EEL compiler also uses the EPSPATH configuration variable. See EEL Command Line Flags.
|