home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / fc20.zip / TOOLS.INI < prev   
INI File  |  1992-12-03  |  4KB  |  83 lines

  1. ;-------------------Configuration for FILE COMMANDO---------------------------
  2.  
  3. ;   The first five parameters specify screen attributes used by FC.  All video
  4. ; attributes are defined as bytes as shown below.
  5. ;   Calculate a color value by taking the desired background color in the high
  6. ; nibble and the foreground color in the low nibble and computing the decimal
  7. ; equivalent.  For example, Cyan letters on a Red background would
  8. ; correspond to a Hex value of 0x43, or decimal 67.  The color values are
  9. ; shown in the chart below.
  10. ;
  11. ;
  12. ;       BLACK   0x0    BLUE      0x1    GREEN   0x2    CYAN    0x3
  13. ;       RED     0x4    MAGENTA   0x5    BROWN   0x6    LTGREY  0x7
  14. ;       DKGREY  0x8    LTBLUE    0x9    LTGREEN 0xA    LTCYAN  0xB
  15. ;       LTRED   0xC    LTMAGENTA 0xD    YELLOW  0xE    WHITE   0xF
  16.  
  17. [FC]
  18.   BorderColor = 27                ; Window Borders
  19.   WindowColor = 27                ; Window Inside Text
  20.   HilightColor = 30               ; Marked Files
  21.   SelectedColor = 48              ; Bounce Bar
  22.   HilightSelectedColor = 62       ; Bounce Bar on Marked File
  23.  
  24. ;   The VIEWER and EDITOR parameters specify the programs to be launched by the
  25. ; the VIEW and EDIT commands described above.  The full path of the executable
  26. ; file must be specified, including the extension (.com or .exe).  The '@'
  27. ; character in the command will be replaced by the full path specification of
  28. ; the selected file.
  29.  
  30.   Viewer = c:\os2\e.exe @
  31.   Editor = c:\os2\e.exe @
  32.  
  33. ; The COMMANDMODE parameter specifies whether or not FC will start up in
  34. ; COMMAND mode, allowing you to type a command directly instead of using
  35. ; the ! operator.
  36.  
  37.   CommandMode = NO
  38.  
  39. ; The IGNORECASE option indicated whether or not FC should ignore alphabetic
  40. ; case when comparing and sorting file names.  HPFS volumes allow you to
  41. ; distinguish between upper and lower case in file names.
  42.  
  43.   IgnoreCase = YES
  44.  
  45. ; The INSERTMODE option specifies whether text input starts in insert mode or
  46. ; overwrite mode by default.  Insert mode can sometime be toggled using the
  47. ; INS key.  The default is YES.
  48.  
  49.   InsertMode = YES
  50.  
  51. ; The CONFIRMCOPY and CONFIRMMOVE options tell FC whether or not to ask for
  52. ; confirmation when completing non-destructive copy and move operations
  53. ; (ones which would not result in a file being over-written).  The default
  54. ; for both options is YES
  55.  
  56.   ConfirmCopy = YES
  57.   ConfirmMove = YES
  58.  
  59. ;   The EXTENSIONS paramter allows you to specify commands to be executed
  60. ; when you press ENTER on a file list entry.  Each extension specified on the
  61. ; EXTENSIONS line must have a corresponding parameter listing the command (in
  62. ; the same format as for the VIEWER above) to be executed for files with that
  63. ; extension.  This command will be started in a new session, separate from FC.
  64. ; This will allow you to start PM programs from FC, as well as VIO programs.
  65. ; When launching external programs, the default is to run the program in
  66. ; whatever tyye of window the OS/2 session manager chooses, which means that
  67. ; if FC is running full screen, your external programs will be launched
  68. ; in another full-screen session, and if FC is running in a VIO window,
  69. ; external programs will also launch in a VIO window.  You can over-ride this
  70. ; default behavior by prefixing an external command with a program type
  71. ; in parenthesis.  Valid prefixes are (V) for a VIO session, (F) for a
  72. ; Full-Screen session, (P) for a PM program (usually not needed) and (C) for
  73. ; the default session.  These prefixes can also be used for the Editor and
  74. ; Viewer parameters, above.  An example is shown below for the .C extension
  75.  
  76.   Extensions = EXE COM CMD TXT ZIP
  77.   EXE = @
  78.   COM = @
  79.   CMD = cmd.exe /C @
  80.   TXT = c:\os2\e.exe @
  81.   ZIP = cmd.exe /k "c:\os2apps\bin\pkunzip2.exe @"
  82. ;-------------------Configuration for FILE COMMANDO------------------------
  83.