home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / ebooke.zip / MYCNF.XMP < prev    next >
Text File  |  1994-11-11  |  4KB  |  61 lines

  1. const
  2.    my_default_search_options = 'CA+F'
  3.    WANT_EBOOKIE = 'DYNALINK'
  4.    SYNTAX_INDENT = 2
  5.  
  6.    HOST_SUPPORT = 'EMUL'       -- ('STD') Use E3EMUL.  Following are for it:
  7.      USING = 'CM'                -- ('CM') Send/Receive protocol    Needed for MVS
  8.      MVS = 0                     -- (0) Include MVS support
  9.      HOST_LT_REQUIRED = 1        -- (0) H: refers to PC; HA: refers to host.
  10.      LINK_HOST_SUPPORT = 1       -- (0) Must link in host support; no room in base.
  11.      my_HOSTCOPY = 'ALMCOPY'           -- The name i use
  12.      my_KEEP_TEMP_FILES = 'C:\TEMP\'   -- This is for E3EMUL to keep files
  13.    REXX_SYNTAX_ASSIST = 1      -- (0) Include Rexx syntax assist
  14.    E_SYNTAX_ASSIST = 1         -- (1) The product doesn't need E syntax assist!
  15.    WANT_STACK_CMDS = 'SWITCH'  -- (0) Include this; nice to have
  16.    WANT_ET_COMMAND = 1         -- (1) The product doesn't get ETPM.
  17.    WANT_ALL = 1                -- (0) Include this; nice to have
  18.    WANT_SEARCH_PATH = 1        -- (0) Include this; nice to have
  19.    WANT_LAN_SUPPORT = 1        -- (0) Include this; nice to have
  20.    CHECK_FOR_LEXAM = 1         -- (0) Give them spell checking if they already have LEXAM.DLL
  21.  
  22.    my_DEFAULT_EDIT_OPTIONS = '/t'  -- ('') Default should be to keep (not expand) tabs
  23.    SETSTAY = '?'               -- (0) Enable the STAY comamnd
  24.    WANT_STREAM_MODE = 'SWITCH' -- (0) Enable switching stream mode on and off
  25.    my_STREAM_MODE = 1          -- (0) Default is to start with it on
  26.    WANT_CUA_MARKING = 'SWITCH' -- (0) Enable switching between CUA and advanced marking
  27.    my_CUA_marking_switch = 1   -- (0) Default is to start with it on
  28.    RING_OPTIONAL = 1           -- (0) Enables Ring on / Ring off code
  29.    my_RING_ENABLED = 0         -- (1) Make it stupid for CUA
  30.    SUPPORT_BOOK_ICON = 0       -- (1) No "Book icon" on Options
  31.    ENHANCED_ENTER_KEYS = 1     -- (0) Let users configure each enter key separately
  32.    NO_ESCAPE = 1               -- (0) CUA says Escape key can't go to command dialog.
  33.    MOUSE_SUPPORT = 'LINK'      -- (1) Another way of saving space.
  34.    ENHANCED_PRINT_SUPPORT = 1  -- (0) Support list of printers
  35.    WANT_DBCS_SUPPORT = 1       -- (0) Include support for DBCS
  36.    EXTRA_EX = 1                -- (0) To make room in EPM.EX for everything we need
  37.    WANT_BRACKET_MATCHING = 1   -- (0) Include bracket matching code.
  38.    WANT_KEYWORD_HELP = 1       -- (0) Include keyword lookup code.
  39.    WANT_EPM_SHELL = 'HIDDEN'   -- (0) Include the function, but not initially visible.
  40.    WANT_LONGNAMES = 'SWITCH'   -- (0) Enable switching on longname support
  41.    WANT_PROFILE = 'SWITCH'     -- (0) Enable switching on Rexx profile support
  42.    TOGGLE_ESCAPE = 1           -- (0) Enable toggling Esc to activate command dialog.
  43.    TOGGLE_TAB = 1              -- (0) Enable toggling Tab key to insert a tab character.
  44.    C_TABS       = 0            -- (3) Without ETPM, users can't customize, so don't set.
  45.    C_MARGINS    = 0            -- (1 254 1)  "
  46.    REXX_TABS    = 0            -- (3)        "
  47.    REXX_MARGINS = 0            -- (1 254 1)  "
  48.    P_TABS       = 0            -- (3)        "
  49.    P_MARGINS    = 0            -- (1 254 1)  "
  50.    my_bkm_debugging=1            -- include debugging if externally linked
  51.  
  52. define
  53.    DRAGCOLOR = ''              -- (YELLOW + MAGENTAB) This will use .markcolor for the .dragcolor.
  54.  
  55. compile if defined(BLACK)
  56. define
  57.    HIGHLIGHT_COLOR = Yellow + Magentab  -- ('') Default is no highlight after Locate
  58.    MARKCOLOR                = White + BlackB  -- (BLUE + GREYB)
  59. compile endif
  60.  
  61.