home *** CD-ROM | disk | FTP | other *** search
INI File | 1992-12-03 | 3.8 KB | 83 lines |
- ;-------------------Configuration for FILE COMMANDO---------------------------
-
- ; The first five parameters specify screen attributes used by FC. All video
- ; attributes are defined as bytes as shown below.
- ; Calculate a color value by taking the desired background color in the high
- ; nibble and the foreground color in the low nibble and computing the decimal
- ; equivalent. For example, Cyan letters on a Red background would
- ; correspond to a Hex value of 0x43, or decimal 67. The color values are
- ; shown in the chart below.
- ;
- ;
- ; BLACK 0x0 BLUE 0x1 GREEN 0x2 CYAN 0x3
- ; RED 0x4 MAGENTA 0x5 BROWN 0x6 LTGREY 0x7
- ; DKGREY 0x8 LTBLUE 0x9 LTGREEN 0xA LTCYAN 0xB
- ; LTRED 0xC LTMAGENTA 0xD YELLOW 0xE WHITE 0xF
-
- [FC]
- BorderColor = 27 ; Window Borders
- WindowColor = 27 ; Window Inside Text
- HilightColor = 30 ; Marked Files
- SelectedColor = 48 ; Bounce Bar
- HilightSelectedColor = 62 ; Bounce Bar on Marked File
-
- ; The VIEWER and EDITOR parameters specify the programs to be launched by the
- ; the VIEW and EDIT commands described above. The full path of the executable
- ; file must be specified, including the extension (.com or .exe). The '@'
- ; character in the command will be replaced by the full path specification of
- ; the selected file.
-
- Viewer = c:\os2\e.exe @
- Editor = c:\os2\e.exe @
-
- ; The COMMANDMODE parameter specifies whether or not FC will start up in
- ; COMMAND mode, allowing you to type a command directly instead of using
- ; the ! operator.
-
- CommandMode = NO
-
- ; The IGNORECASE option indicated whether or not FC should ignore alphabetic
- ; case when comparing and sorting file names. HPFS volumes allow you to
- ; distinguish between upper and lower case in file names.
-
- IgnoreCase = YES
-
- ; The INSERTMODE option specifies whether text input starts in insert mode or
- ; overwrite mode by default. Insert mode can sometime be toggled using the
- ; INS key. The default is YES.
-
- InsertMode = YES
-
- ; The CONFIRMCOPY and CONFIRMMOVE options tell FC whether or not to ask for
- ; confirmation when completing non-destructive copy and move operations
- ; (ones which would not result in a file being over-written). The default
- ; for both options is YES
-
- ConfirmCopy = YES
- ConfirmMove = YES
-
- ; The EXTENSIONS paramter allows you to specify commands to be executed
- ; when you press ENTER on a file list entry. Each extension specified on the
- ; EXTENSIONS line must have a corresponding parameter listing the command (in
- ; the same format as for the VIEWER above) to be executed for files with that
- ; extension. This command will be started in a new session, separate from FC.
- ; This will allow you to start PM programs from FC, as well as VIO programs.
- ; When launching external programs, the default is to run the program in
- ; whatever tyye of window the OS/2 session manager chooses, which means that
- ; if FC is running full screen, your external programs will be launched
- ; in another full-screen session, and if FC is running in a VIO window,
- ; external programs will also launch in a VIO window. You can over-ride this
- ; default behavior by prefixing an external command with a program type
- ; in parenthesis. Valid prefixes are (V) for a VIO session, (F) for a
- ; Full-Screen session, (P) for a PM program (usually not needed) and (C) for
- ; the default session. These prefixes can also be used for the Editor and
- ; Viewer parameters, above. An example is shown below for the .C extension
-
- Extensions = EXE COM CMD TXT ZIP
- EXE = @
- COM = @
- CMD = cmd.exe /C @
- TXT = c:\os2\e.exe @
- ZIP = cmd.exe /k "c:\os2apps\bin\pkunzip2.exe @"
- ;-------------------Configuration for FILE COMMANDO------------------------
-