routine or constant name search

3.3 Editing a Program

If you have not selected your "favorite editor," then try edx:

You can use any text editor to edit a Euphoria program. However, Euphoria comes with its own special editor that is written entirely in Euphoria. Type: edx followed by the complete name of the file you wish to edit. You can use this editor to edit any kind of text file. When you edit a Euphoria file some extra features such as color syntax highlighting and auto-completion of certain statements are available to make your job easier.

Whenever you run a Euphoria program and get an error message, during compilation or execution, you can simply type edx with no file name and you will be automatically positioned in the file containing the error, at the correct line and column, and with the error message displayed at the top of the screen.

Under Windows you can associate edx.bat with various kinds of text files that you want to edit. Color syntax highlighting is provided for .ex, .exw, .exd, .e and .pro (profile files).

Most keys that you type are inserted into the file at the cursor position. Hit the Esc key once to get a menu bar of special commands. The arrow keys, and the Insert/Delete/Home/End/PageUp/PageDown keys are also active. Under Linux/FreeBSD some keys may not be available, and alternate keys are provided. See Edx, Euphoria Editor for a complete description of the editing commands.

If you need to understand or modify any detail of the editor's operation, you can edit the file edx.ex in euphoria\bin (be sure to make a backup copy so you don't lose your ability to edit). If the name edx conflicts with some other command on your system, simply rename the file euphoria\bin\edx.bat to something else. Because this editor is written in Euphoria, it is remarkably concise and easy to understand. The same functionality implemented in a language like C, would take far more lines of code.

edx is a simple text-mode editor that runs on all platforms and is distributed with Euphoria. There is a list of other editors at the OpenEuphoria web site, many of which include extra features such as syntax highlighting.