home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 5 Edit
/
05-Edit.zip
/
epm603b.zip
/
EPMMAC.ZIP
/
MYCNF.SMP
< prev
next >
Wrap
Text File
|
1995-01-03
|
3KB
|
63 lines
; Note: This is a *sample* MYCNF.E, to guide you in setting up your own
; configuration file. You should not blindly copy this MYCNF.SMP
; file to a MYCNF.E file; you might not like the way the defaults
; are modified by this file. In order to prevent you from copying
; this directly, we include the following line which will cause an
; error if compiled:
*** MYCNF.SMP is a *sample* configuration; please create your own MYCNF.E.
; Note to EPM users: EPMGCNF.SMP is the MYCNF.E used to build the
; OS/2 2.0 Enhanced Editor. OS2TOOLS.CFG is the MYCNF.E used to
; build the .ex files shipped with the EPM package internally.
; Now, on with the examples.
compile if EVERSION < 5 -- Setup customization for E3 and EOS2
set coms 1 'c:\e3\' -- (EPM doesn't use COMS.E.)
compile endif
set insert_state 0 -- I prefer to have insert initially off
const
AUTOSAVE_PATH = 'c:\oldfiles\' -- Put AUTOSAVE files here.
ENTER_ACTION = 'ADDATEND' -- I don't like Enter to insert a line;
C_ENTER_ACTION = 'ADDLINE' -- I prefer Ctrl-enter to do that.
P_SYNTAX_ASSIST = 0 -- I don't program in Pascal; save space.
ASSIST_TRIGGER = 'C_ENTER' -- Set to what I use to enter a line.
SMARTFILE = 1 -- If no changes, File key just quits.
SMARTQUIT = 1 -- If changes, Quit says "Y, N or File".
JHwindow = 1 -- Zoomed window in messy mode looks tiled.
WANT_SEARCH_PATH = 1 -- I include this routine...
WANT_GET_ENV = 1 -- ... and this one for EP command.
compile if EVERSION >= 5 & EVERSION < 6
EXTRA_EX = 1 -- Too much stuff to fit in one .EX file;
compile endif -- compile *both* EPM and EXTRA.
/* Initializations... */
my_messy = 1 -- I prefer messy mode (can Drag & Size).
my_default_search_options='C' -- I prefer default to be ignore case.
compile if EVERSION >= '5.51'
my_default_save_options='/S' -- Strip trailing spaces when saving.
compile endif
; Overrides for the standard colors:
compile if defined(BLACK) -- Only define if COLORS.E has been included; MYCNF
-- may be included by many stand-alone .E files that
-- need to set something the way that it's set when
-- E.E is compiled, and they might not need to
-- include COLORS.E.
define
STATUSCOLOR = Yellow + GreenB
FILENAMECOLOR = Yellow + GreenB
COMMANDCOLOR = Light_Cyan+MagentaB
BOXCOLOR = Light_Green
CURSORCOLOR = Yellow + MagentaB + Blink
MARKCOLOR = White + CyanB
MODIFIED_FILENAMECOLOR = Red + GreenB
HIGHLIGHT_COLOR = Yellow + Magentab -- hilight Located strings.
compile endif