home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / TOOLS / MC3543B / mc.hlp < prev    next >
Text File  |  1997-05-14  |  115KB  |  3,114 lines

  1. [Contents]
  2. Topics:
  3.  
  4.    DESCRIPTION DESCRIPTION
  5.    OPTIONS OPTIONS
  6.    Overview Overview
  7.    Mouse Support Mouse Support
  8.  
  9.    Keys Keys
  10.      Miscellaneous Keys Miscellaneous Keys
  11.      Directory Panels Directory Panels
  12.      Shell Command Line Shell Command Line
  13.      General Movement Keys General Movement Keys
  14.      Input Line Keys Input Line Keys
  15.  
  16.    Menu Bar Menu Bar
  17.      Left and Right Menus Left and Right Menus
  18.        Listing Mode... Listing Mode...
  19.        Sort Order... Sort Order...
  20.        Filter... Filter...
  21.        Reread Reread
  22.      File Menu File Menu
  23.        Quick cd Quick cd
  24.      Command Menu Command Menu
  25.        Directory Tree Directory Tree
  26.        Find File Find File
  27.        External panelize External panelize
  28.        Hotlist Hotlist
  29.        Extension File Edit Extension File Edit
  30.        Background jobs Background jobs
  31.        Menu File Edit Menu File Edit
  32.      Options Menu Options Menu
  33.        Configuration Configuration
  34.        Display bits Display bits
  35.        Confirmation Confirmation
  36.        Learn keys Learn keys
  37.        Virtual FS Virtual FS
  38.        Layout Layout
  39.        Save Setup Save Setup
  40.  
  41.    Executing operating system commands Executing operating system commands
  42.      The cd internal command The cd internal command
  43.      Macro Substitution Macro Substitution
  44.      The subshell support The subshell support
  45.      Controlling Midnight Commander Controlling Midnight Commander
  46.    Chmod Chmod
  47.    Chown Chown
  48.    File Operations File Operations
  49.    Mask Copy/Rename Mask Copy/Rename
  50.    Internal File Viewer Internal File Viewer
  51.    Internal File Editor Internal File Editor
  52.    Completion Completion
  53.    Virtual File System Virtual File System
  54.      FTP File System FTP File System
  55.      Tar File System Tar File System
  56.      Network File System Network File System
  57.      Undelete File System Undelete File System
  58.    Colors Colors
  59.    Special Settings Special Settings
  60.    Terminal databases Terminal databases
  61.  
  62.    FILES FILES
  63.    AVAILABILITY AVAILABILITY
  64.    SEE ALSO SEE ALSO
  65.    AUTHORS AUTHORS
  66.    BUGS BUGS
  67.    License License
  68.    QueryBox QueryBox
  69.    How to use help How to use help
  70. [DESCRIPTION]
  71. DESCRIPTION
  72.  
  73. The Midnight Commander is a directory browser/file manager
  74. for Unix-like operating systems.[OPTIONS]
  75. OPTIONS
  76.  
  77.  
  78. "-b"  Forces black and white display.
  79.  
  80. "-c"  Force color mode, please check the section ColorsColors for
  81. more information.
  82.  
  83. "-C arg"  Used to specify a different color set in the
  84. command line. The format of arg is documented in the
  85. ColorsColors section.
  86.  
  87. "-d"  Disables mouse support.
  88.  
  89. "-f"  Displays the compiled-in search paths for Midnight
  90. Commander files.
  91.  
  92. "-l file"   Save the ftpfs dialog with the server in file.
  93.  
  94. "-P"  At program end, the Midnight Commander will print the
  95. last working directory; this, along with the shell
  96. function below, will allow you to browse through your
  97. directories and automatically move to the last directory
  98. you were in (thanks to Torben Fjerdingstad and Sergey for
  99. contributing this function and the code which implements
  100. this option).
  101.  
  102. bash and zsh users:
  103.  
  104. mc ()
  105. {
  106.         MC=/tmp/mc$$-"$RANDOM"
  107.         @prefix@/bin/mc -P "$@" > "$MC"
  108.         cd `cat "$MC"`
  109.         rm "$MC"
  110.         unset MC;
  111. }
  112.  
  113. tcsh users:
  114. alias mc 'setenv MC `@prefix@/bin/mc -P \!*`; cd $MC; unsetenv MC'
  115.  
  116. I know the bash function could be shorter for zsh and bash
  117. but the backquotes on bash won't accept your suspension
  118. the program with C-z.
  119.  
  120. "-s"  Turns on the slow terminal mode, in this mode the
  121. program will not draw expensive line drawing characters
  122. and will toggle verbose mode off.
  123.  
  124. "-t"  Used only if the code was compiled with Slang and
  125. terminfo: it makes the Midnight Commander use the value of
  126. the TERMCAP  variable for the terminal information instead
  127. of the information on the system wide terminal database
  128.  
  129. "-u"  Disables the use of a concurrent shell (only makes
  130. sense if the Midnight Commander has been built with
  131. concurrent shell support).
  132.  
  133. "-U"  Enables the use of the concurrent shell support (only
  134. makes sense if the Midnight Commander was built with the
  135. subshell support set as an optional feature).
  136.  
  137. "-v file"  Enters the internal viewer to view the file
  138. specified.
  139.  
  140. "-V"  Displays the version of the program.
  141.  
  142. "-x"  Forces xterm mode. Used when running on xterm-capable
  143. terminals (two screen modes, and able to send mouse escape
  144. sequences).
  145.  
  146. If specified, the first path name is the directory to show
  147. in the selected panel; the second path name is the
  148. directory to be shown in the other panel.
  149.  
  150. [Overview]
  151. Overview
  152.  
  153. The screen of the Midnight Commander is divided into four
  154. parts. Almost all of the screen space is taken up by two
  155. directory panels. By default, the second bottommost line
  156. of the screen is the shell command line, and the bottom
  157. line shows the function key labels. The topmost line is
  158. the menu bar line.Menu Bar The menu bar line may not be visible,
  159. but appears if you click the topmost line with the mouse
  160. or press the F9 key.
  161.  
  162. The Midnight Commander provides a view of two directories
  163. at the same time. One of the panels is the current panel
  164. (a selection bar is in the current panel). Almost all
  165. operations take place on the current panel. Some file
  166. operations like Rename and Copy by default use the
  167. directory of the unselected panel as a destination (don't
  168. worry, they always ask you for confirmation first). For
  169. more information, see the sections on the Directory
  170. Panels,Directory Panels the Left and Right MenusLeft and Right Menus and the File Menu.File Menu
  171.  
  172. You can execute system commands from the Midnight
  173. Commander by simply typing them. Everything you type will
  174. appear on the shell command line, and when you press Enter
  175. the Midnight Commander will execute the command line you
  176. typed; read the Shell Command LineShell Command Line and Input Line KeysInput Line Keys
  177. sections to learn more about the command line.
  178.  
  179. [Mouse Support]
  180. Mouse Support
  181.  
  182. The Midnight Commander comes with mouse support. It is
  183. activated whenever you are running on an xterm(1)  terminal
  184. (it even works if you take a telnet or rlogin connection
  185. to another machine from the xterm) or if you are running
  186. on a Linux console and have the gpm  mouse server running.
  187.  
  188. When you left click on a file in the directory panels,
  189. that file is selected; if you click with the right button,
  190. the file is marked (or unmarked, depending on the previous
  191. state).
  192.  
  193. Double-clicking on a file will try to execute the command
  194. if it is an executable program; and if the extension fileExtension File
  195. Edithas a program specified for the file's extension, the
  196. specified program is executed.
  197.  
  198. Also, it is possible to execute the commands assigned to
  199. the function key labels by clicking on them.
  200.  
  201. If a mouse button is clicked on the top frame line of the
  202. directory panel, it is scrolled one pageful backward.
  203. Correspondingly, a click on the bottom frame line will
  204. cause a scroll of one pageful forward. This frame line
  205. method works also in the Help ViewerHelp and the Directory
  206. Tree.Directory Tree
  207.  
  208. The default auto repeat rate for the mouse buttons is 400
  209. milliseconds. This may be changed to other values by
  210. editing the .mc.iniSave Setup file and changing the
  211. mouse_repeat_rate  parameter.
  212.  
  213. If you are running the Commander with the mouse support,
  214. you can bypass the Commander and get the default mouse
  215. behavior (cutting and pasting text) by holding down the
  216. Shift key.[]
  217.  
  218.  
  219. [Keys]
  220. Keys
  221.  
  222. Some commands in the Midnight Commander involve the use of
  223. the Control  (sometimes labeled CTRL or CTL) and the Meta
  224. (sometimes labeled ALT or even Compose) keys. In this
  225. manual we will use the following abbreviations:
  226.  
  227. C-<chr> means hold the Control key while typing the
  228. character <chr>. Thus C-f would be: hold the Control key
  229. and type f.
  230.  
  231. M-<chr> means hold the Meta or Alt key down while typing
  232. <chr>. If there is no Meta or Alt key, type ESC, release
  233. it, then type the character <chr>.
  234.  
  235. All input lines in the Midnight Commander use an
  236. approximation to the GNU Emacs editor's key bindings.
  237.  
  238. There are many sections which tell about the keys. The
  239. following are the most important.
  240.  
  241. The File MenuFile Menu section documents the keyboard shortcuts
  242. for the commands appearing in the File menu. This section
  243. includes the function keys. Most of these commands perform
  244. some action, usually on the selected file or the tagged
  245. files.
  246.  
  247. The Directory PanelsDirectory Panels section documents the keys which
  248. select a file or tag files as a target for a later action
  249. (the action is usually one from the file menu).
  250.  
  251. The Shell Command LineShell Command Line section list the keys which are
  252. used for entering and editing command lines. Most of these
  253. copy file names and such from the directory panels to the
  254. command line (to avoid excessive typing) or access the
  255. command line history.
  256.  
  257. Input Line KeysInput Line Keys are used for editing input lines. This
  258. means both the command line and the input lines in the
  259. query dialogs.
  260.  
  261. [Miscellaneous Keys]
  262. Miscellaneous Keys
  263.  
  264. Here are some keys which don't fall into any of the other
  265. categories:
  266.  
  267. Enter.  If there is some text in the command line (the one
  268. at the bottom of the panels), then that command is
  269. executed. If there is no text in the command line then if
  270. the selection bar is over a directory the Midnight
  271. Commander does a chdir(2)  to the selected directory and
  272. reloads the information on the panel; if the selection is
  273. an executable file then it is executed. Finally, if the
  274. extension of the selected file name matches one of the
  275. extensions in the extensions fileExtension File Edit then the corresponding
  276. command is executed.
  277.  
  278. C-l.  Repaint all the information in the Midnight
  279. Commander.
  280.  
  281. C-x c.  Run the ChmodChmod command on a file or on the tagged
  282. files.
  283.  
  284. C-x o.  Run the ChownChown command on the current file or on the
  285. tagged files.
  286.  
  287. C-x l.  Run the link command.
  288.  
  289. C-x s.  Run the symbolic link command.
  290.  
  291. C-x i.  Set the other panel display mode to information.
  292.  
  293. C-x q.  Set the other panel display mode to quick view.
  294.  
  295. C-x !.  Execute the External panelizeExternal panelize command.
  296.  
  297. C-x h  Run the add directory to hotlistHotlist command.
  298.  
  299. M-!,  Executes the Filtered view command, described in the
  300. view command.Internal File Viewer
  301.  
  302. M-?,  Executes the Find fileFind File command.
  303.  
  304. M-c,  Pops up the quick cdQuick cd dialog.
  305.  
  306. C-o,  When the program is being run in the Linux console or
  307. under an xterm, it will show you the output of the
  308. previous command. When ran on the Linux console, the
  309. Midnight Commander uses an external program (cons.saver)
  310. to handle saving and restoring of information on the
  311. screen.
  312.  
  313. When the subshell support is compiled in, you can type C-o
  314. at any time and you will be taken back to the Midnight
  315. Commander main screen, to return to your application just
  316. type C-o. If you have an application suspended by using
  317. this trick, you won't be able to execute other programs
  318. from the Midnight Commander until you terminate the
  319. suspended application.
  320.  
  321. [Directory Panels]
  322. Directory Panels
  323.  
  324. This section lists the keys which operate on the directory
  325. panels. If you want to know how to change the appearance
  326. of the panels take a look at the section on Left and Right
  327. Menus.Left and Right Menus
  328.  
  329. Tab, C-i.  Change the current panel. The old other panel
  330. becomes the new current panel and the old current panel
  331. becomes the new other panel. The selection bar moves from
  332. the old current panel to the new current panel.
  333.  
  334. Insert, C-t.  To tag files you may use the Insert key (the
  335. kich1 terminfo sequence) or the C-t (Control-t) sequence.
  336. To untag files, just retag a tagged file.
  337.  
  338. M-g, M-h (or M-r), M-j.  Used to select the top file in a
  339. panel, the middle file and the bottom one, respectively.
  340.  
  341. C-s, M-s.  Start a filename search in the directory
  342. listing. When the search is active the keypresses will be
  343. added to the search string instead of the command line. If
  344. the "Show mini-status"  option is enabled the search string
  345. is shown on the mini-status line. When typing, the
  346. selection bar will move to the next file starting with the
  347. typed letters. The "backspace" or DEL   keys can be used to
  348. correct typing mistakes. If C-s is pressed again, the next
  349. match is searched for.
  350.  
  351. M-t  Toggle the current display listing to show the next
  352. display listing mode. With this it is possible to quickly
  353. switch from long listing to regular listing and the user
  354. defined listing mode.
  355.  
  356. C-\\ (control-backslash).  Show the directory hotlistHotlist and
  357. change to the selected directory.
  358.  
  359. +  (plus).  This is used to select (tag) a group of files.
  360. The Midnight Commander will prompt for a regular
  361. expression describing the group. When Shell Patterns   are
  362. enabled, the regular expression is much like the regular
  363. expressions in the shell (* standing for zero or more
  364. characters and ? standing for one character). If Shell
  365. Patterns  is off, then the tagging of files is done with
  366. normal regular expressions (see ed (1)).
  367.  
  368. If the expression starts or ends with a slash (/), then it
  369. will select directories instead of files.
  370.  
  371. \\ (backslash).  Use the "\" key to unselect a group of
  372. files. This is the opposite of the Plus key.
  373.  
  374. up-key, C-p.  Move the selection bar to the previous entry
  375. in the panel.
  376.  
  377. down-key, C-n.  Move the selection bar to the next entry in
  378. the panel.
  379.  
  380. home, a1, M-<.  Move the selection bar to the first entry
  381. in the panel.
  382.  
  383. end, c1, M->.  Move the selection bar to the last entry in
  384. the panel.
  385.  
  386. next-page, C-v.  Move the selection bar one page down.
  387.  
  388. prev-page, M-v.  Move the selection bar one page up.
  389.  
  390. M-o,  If the other panel is a listing panel and you are
  391. standing on a directory in the current panel, then the
  392. other panel contents are set to the contents of the
  393. currently selected directory (like Emacs' dired C-o key)
  394. otherwise the other panel contents are set to the parent
  395. dir of the current dir.
  396.  
  397. C-PageUp, C-PageDown  Only when ran on the Linux console:
  398. does a chdir to ".." and to the currently selected
  399. directory respectively.
  400.  
  401. [Shell Command Line]
  402. Shell Command Line
  403.  
  404. This section lists keys which are useful to avoid
  405. excessive typing when entering shell commands.
  406.  
  407. M-Enter.  Copy the currently selected file name to the
  408. command line.
  409.  
  410. C-Enter.  Same a M-Enter, this one only works on the Linux
  411. console.
  412.  
  413. M-Tab.  Does the filename, command, variable, username and
  414. hostname completionCompletion for you.
  415.  
  416. C-x t, C-x C-t.  Copy the tagged files (or if there are no
  417. tagged files, the selected file) of the current panel (C-x
  418. t) or of the other panel (C-x C-t) to the command line.
  419.  
  420. C-x p, C-x C-p.   The first key sequence copies the current
  421. path name to the command line, and the second one copies
  422. the unselected panel's path name to the command line.
  423.  
  424. C-q.  The quote command can be used to insert characters
  425. that are otherwise interpreted by the Midnight Commander
  426. (like the '+' symbol)
  427.  
  428. M-p, M-n.  Use these keys to browse through the command
  429. history. M-p takes you to the last entry, M-n takes you to
  430. the next one.
  431.  
  432. [General Movement Keys]
  433. General Movement Keys
  434.  
  435. The help viewer, the file viewer and the directory tree
  436. use common code to handle moving. Therefore they accept
  437. exactly the same keys. Each of them also accepts some keys
  438. of its own.
  439.  
  440. Other parts of the Midnight Commander use some of the same
  441. movement keys, so this section may be of use for those
  442. parts too.
  443.  
  444. Up, C-p.  Moves one line backward.
  445.  
  446. Down, C-n.  Moves one line forward.
  447.  
  448. Prev Page, Page Up, M-v.  Moves one pageful backward.
  449.  
  450. Next Page, Page Down, C-v.  Moves one pageful forward.
  451.  
  452. Home, A1.  Moves to the beginning.
  453.  
  454. End, C1.  Move to the end.
  455.  
  456. The help viewer and the file viewer accept the following
  457. keys in addition the to ones mentioned above:
  458.  
  459. b, C-b, C-h, Backspace, Delete.  Moves one pageful
  460. backward.
  461.  
  462. Space bar.  Moves one pageful forward.
  463.  
  464. u, d.  Moves one half of a page backward or forward.
  465.  
  466. g, G.  Moves to the beginning or to the end.
  467.  
  468. [Input Line Keys]
  469. Input Line Keys
  470.  
  471. The input lines (they are used for the command lineShell Command Line and
  472. for the query dialogs in the program) accept these keys:
  473.  
  474. C-a  puts the cursor at the beginning of line.
  475.  
  476. C-e  puts the cursor at the end of the line.
  477.  
  478. C-b, move-left  move the cursor one position left.
  479.  
  480. C-f, move-right  move the cursor one position right.
  481.  
  482. M-f  moves one word forward.
  483.  
  484. M-b  moves one word backward.
  485.  
  486. C-h, backspace  delete the previous character.
  487.  
  488. C-d, Delete  delete the character in the point (over the
  489. cursor).
  490.  
  491. C-@  sets the mark for cutting.
  492.  
  493. C-w  copies the text between the cursor and the mark to a
  494. kill buffer and removes the text from the input line.
  495.  
  496. M-w  copies the text between the cursor and the mark to a
  497. kill buffer.
  498.  
  499. C-y  yanks back the contents of the kill buffer.
  500.  
  501. C-k  kills the text from the cursor to the end of the line.
  502.  
  503. M-p, M-n  Use these keys to browse through the command
  504. history. M-p takes you to the last entry, M-n takes you to
  505. the next one.
  506.  
  507. M-C-h, M-Backspace  delete one word backward.
  508.  
  509. M-Tab  does the filename, command, variable, username and
  510. hostname completionCompletion for you.
  511.  
  512. []
  513.  
  514.  
  515. [Menu Bar]
  516. Menu Bar
  517.  
  518. The menu bar pops up when you press F9 or click the mouse
  519. on the top row of the screen. The menu bar has five menus:
  520. "Left", "File", "Command", "Options" and "Right".
  521.  
  522. The Left and Right MenusLeft and Right Menus allow you to modify the
  523. appearance of the left and right directory panels.
  524.  
  525. The File MenuFile Menu lists the actions you can perform on the
  526. currently selected file or the tagged files.
  527.  
  528. The Command MenuCommand Menu lists the actions which are more general
  529. and bear no relation to the currently selected file or the
  530. tagged files.
  531.  
  532. [Left and Right Menus]
  533. Left and Right Menus
  534.  
  535. The outlook of the directory panels can be changed from
  536. the "Left"  and "Right"  menus.
  537.  
  538. [Listing Mode...]
  539. Listing Mode...
  540.  
  541. The listing mode view is used to display a listing of
  542. files, there are four different listing modes available:
  543. Full,  Brief,  Long,  and User.  The full directory view shows
  544. the file name, the size of the file and the modification
  545. time.
  546.  
  547. The brief view shows only the file name and it has two
  548. columns (therefore showing twice as many files as other
  549. views). The long view is similar to the output of "ls -l"
  550. command. The long view takes the whole screen width.
  551.  
  552. If you choose the "User" display format, then you have to
  553. specify the display format.
  554.  
  555. The user display format must start with a panel size
  556. specifier. This may be "half" or "full", and they specify
  557. a half screen panel and a full screen panel respectively.
  558.  
  559. After the panel size, you may specify the two columns mode
  560. on the panel, this is done by adding the number "2" to the
  561. user format string.
  562.  
  563. After this you add the name of the fields with an optional
  564. size specifier. This are the available fields you may
  565. display:
  566.  
  567. name,  displays the file name.
  568.  
  569. size,  displays the file size.
  570.  
  571. type,  displays a one character field type. This character
  572. is a superset of what is displayed by ls with the -F flag.
  573. An asterisk for executable files, a slash for directories,
  574. an at-sign for links, an equal sign for sockets, a hyphen
  575. for character devices, a plus sign for block devices, a
  576. pipe for fifos, a tilde for symbolic links to directories
  577. and an exclamation mark for stalled symlinks (links that
  578. point nowhere).
  579.  
  580. mtime,  file's last modification time.
  581.  
  582. atime,  file's last access time.
  583.  
  584. ctime,  file's creation time.
  585.  
  586. perm,  a string representing the current permission bits of
  587. the file.
  588.  
  589. mode,  an octal value with the current permission bits of
  590. the file.
  591.  
  592. nlink,  the number of links to the file. ngid,  the GID
  593. (numeric).
  594.  
  595. nuid,  the UID (numeric).
  596.  
  597. owner,  the owner of the file.
  598.  
  599. group,  the group of the file.
  600.  
  601. inode,  the inode of the file.
  602.  
  603. Also you may use these field names for arranging the
  604. display:
  605.  
  606. space,  a space in the display format.
  607.  
  608. mark,  An asterisk if the file is tagged, a space if it's
  609. not.
  610.  
  611. |,  This character is used to add a vertical line to the
  612. display format.
  613.  
  614. To force one field to a fixed size (a size specifier), you
  615. just add a ':' and then the number of characters you want
  616. the field to have, if the number is followed by the symbol
  617. '+', then the size specifies the minimum field size, if
  618. the program finds out that there is more space on the
  619. screen, it will then expand this field.
  620.  
  621. For example, the Full  display corresponds to this format:
  622.  
  623. half type,name,|,size,|,mtime
  624.  
  625. And the Long  display corresponds to this format:
  626.  
  627. full
  628. perm,space,nlink,space,owner,space,group,space,size,space,
  629. mtime,space,name
  630.  
  631. This is a nice user display format:
  632.  
  633. half name,|,size:7,|,type,mode:3
  634.  
  635. Panels may also be set to the following modes:
  636.  
  637. "Info"  The info view display information related to the
  638. currently selected file and if possible information about
  639. the current file system.
  640.  
  641. "Tree"   The tree view is quite similar to the directory
  642. treeDirectory Tree feature. See the section about it for more
  643. information.
  644.  
  645. "Quick View"  In this mode, the panel will switch to a
  646. reduced viewerInternal File Viewer that displays the contents of the
  647. currently selected file, if you select the panel (with the
  648. tab key or the mouse), you will have access to the usual
  649. viewer commands.
  650.  
  651. [Sort Order...]
  652. Sort Order...
  653.  
  654. The eight sort orders are by name, by extension, by
  655. modification time, by access time, and by inode
  656. information modification time, by size, by inode and
  657. unsorted. In the Sort order dialog box you can choose the
  658. sort order and you may also specify if you want to sort in
  659. reverse order by checking the reverse box.
  660.  
  661. By default directories are sorted before files but this
  662. can be changed from the Options menuOptions Menu (option "Mix all
  663. files"  ).
  664.  
  665. [Filter...]
  666. Filter...
  667.  
  668. The filter command allows you to specify a shell pattern
  669. (for example "*.tar.gz"  ) which the files must match to be
  670. shown. Regardless of the filter pattern, the directories
  671. and the links to directories are always shown in the
  672. directory panel.
  673.  
  674. [Reread]
  675. Reread
  676.  
  677. The reread command reload the list of files in the
  678. directory. It is useful if other processes have created or
  679. removed files. If you have panelized file names in a panel
  680. this will reload the directory contents and remove the
  681. panelized information (See the section External panelizeExternal panelize
  682. for more information).
  683.  
  684. [File Menu]
  685. File Menu
  686.  
  687. The Midnight Commander uses the F1 - F10 keys as keyboard
  688. shortcuts for commands appearing in the file menu. The
  689. escape sequences for the Fkeys are terminfo capabilities
  690. kf1 trough kf10. On terminals without function key
  691. support, you can achieve the same functionality by
  692. pressing the ESC key and then a number in the range 1
  693. through 9 and 0 (corresponding to F1 to F9 and F10
  694. respectively).
  695.  
  696. The File menu has the following commands (keyboard
  697. shortcuts in parentheses):
  698.  
  699. Help (F1)
  700.  
  701. Invokes the built-in hypertext help viewer. Inside the
  702. help viewer,Help you can use the Tab key to select the next
  703. link and the Enter key to follow that link. The keys Space
  704. and Backspace are used to move forward and backward in a
  705. help page. Press F1 again to get the full list of accepted
  706. keys.
  707.  
  708. Menu (F2)
  709.  
  710. Invoke the user menu.Menu File Edit The user menu provides an easy way
  711. to provide users with a menu and add extra features to the
  712. Midnight Commander.
  713.  
  714. View (F3, Shift-F3)
  715.  
  716. View the currently selected file. By default this invokes
  717. the Internal File ViewerInternal File Viewer but if the option "Use internal
  718. view" is off, it invokes an external file viewer specified
  719. by the PAGER   environment variable. If PAGER  is undefined,
  720. the "view" command is invoked. If you use Shift-F3
  721. instead, the viewer will be invoked without doing any
  722. formatting or pre processing to the file.
  723.  
  724. Filtered View (M-!)
  725.  
  726. this command prompts for a command and it's arguments (the
  727. argument defaults to the currently selected file name),
  728. the output from such command is shown in the internal file
  729. viewer.
  730.  
  731. Edit (F4)
  732.  
  733. Currently it invokes the vi   editor, or the editor
  734. specified in the EDITOR  environment variable, or the
  735. Internal File EditorInternal File Editor if the use_internal_edit option is
  736. on.
  737.  
  738. Copy (F5)
  739.  
  740. Pop up an input dialog with destination that defaults to
  741. the directory in the non-selected panel and copies the
  742. currently selected file (or the tagged files, if there is
  743. at least one file tagged) to the directory specified by
  744. the user in the input dialog. During this process, you can
  745. press C-c or ESC to abort the operation. For details about
  746. source mask (which will be usually either * or ^\(.*\)$
  747. depending on setting of Use shell patterns) and possible
  748. wildcards in the destination see Mask copy/rename.Mask Copy/Rename
  749.  
  750. On some systems, it is possible to do the copy in the
  751. background by clicking on the background button (or
  752. pressing M-b in the dialog box). The Background JobsBackground Jobs is
  753. used to control the background process.
  754.  
  755. Link (C-x l)
  756.  
  757. Create a hard link to the current file.
  758.  
  759. SymLink (C-x s)
  760.  
  761. Create a symbolic link to the current file. To those of
  762. you who don't know what links are: creating a link to a
  763. file is a bit like copying the file, but both the source
  764. filename and the destination filename represent the same
  765. file image. For example, if you edit one of these files,
  766. all changes you make will appear in both files. Some
  767. people call links aliases or shortcuts.
  768.  
  769. A hard link appears as a real file. After making it, there
  770. is no way of telling which one is the original and which
  771. is the link. If you delete either one of them the other
  772. one is still intact. It is very difficult to notice that
  773. the files represent the same image. Use hard links when
  774. you don't even want to know.
  775.  
  776. A symbolic link is a reference to the name of the original
  777. file. If the original file is deleted the symbolic link is
  778. useless. It is quite easy to notice that the files
  779. represent the same image. The Midnight Commander shows an
  780. "@"-sign in front of the file name if it is a symbolic
  781. link to somewhere (except to directory, where it shows a
  782. tilde (~)). The original file which the link points to is
  783. shown on mini-status line if the "Show mini-status"  option
  784. is enabled. Use symbolic links when you want to avoid the
  785. confusion that can be caused by hard links.
  786.  
  787. Rename/Move (F6)
  788.  
  789. Pop up an input dialog that defaults to the directory in
  790. the non-selected panel and moves the currently selected
  791. file (or the tagged files if there is at least one tagged
  792. file) to the directory specified by the user in the input
  793. dialog. During the process, you can press C-c or ESC to
  794. abort the operation. For more details look at Copy
  795. operation above, most of the things are quite similar.
  796.  
  797. On some systems, it is possible to do the copy in the
  798. background by clicking on the background button (or
  799. pressing M-b in the dialog box). The Background JobsBackground Jobs is
  800. used to control the background process.
  801.  
  802. Mkdir (F7)
  803.  
  804. Pop up an input dialog and creates the directory
  805. specified.
  806.  
  807. Delete (F8)
  808.  
  809. Delete the currently selected file or the tagged files in
  810. the currently selected panel. During the process, you can
  811. press C-c or ESC to abort the operation.
  812.  
  813. Quick cd (M-c)  Use the quick cdQuick cd command if you have full
  814. command line and want to cd somewhere.
  815.  
  816. Select group (+)
  817.  
  818. This is used to select (tag) a group of files. The
  819. Midnight Commander will prompt for a regular expression
  820. describing the group. When Shell Patterns   are enabled,
  821. the regular expression is much like the filename globbing
  822. in the shell (* standing for zero or more characters and ?
  823. standing for one character). If Shell Patterns  is off,
  824. then the tagging of files is done with normal regular
  825. expressions (see ed (1)).
  826.  
  827. To mark directories instead of files, the expression must
  828. start or end with a '/'.
  829.  
  830. Unselect group (\\)
  831.  
  832. Used for unselecting a group of files. This is the
  833. opposite of the "Select group"  command.
  834.  
  835. Quit (F10, Shift-F10)
  836.  
  837. Terminate the Midnight Commander. Shift-F10 is used when
  838. you want to quit and you are using the shell wrapper.
  839. Shift-F10 will not take you to the last directory you
  840. visited with the Midnight Commander, instead it will stay
  841. at the directory where you started the Midnight Commander.
  842.  
  843. [Quick cd]
  844. Quick cd
  845.  
  846. This command is useful if you have a full command line and
  847. want to cdThe cd internal command somewhere without having to yank and paste
  848. the command line. This command pops up a small dialog,
  849. where you enter everything you would enter after cd   on
  850. the command line and then you press enter. This features
  851. all the things that are already in the internal cd
  852. command.The cd internal command
  853.  
  854. [Command Menu]
  855. Command Menu
  856.  
  857. The Directory treeDirectory Tree command shows a tree figure of the
  858. directories.
  859.  
  860. The Find fileFind File command allows you to search for a specific
  861. file. The "Swap panels" command swaps the contents of the
  862. two directory panels.
  863.  
  864. The "Panels on/off" command shows the output of the last
  865. shell command. This works only on xterm and on Linux
  866. console.
  867.  
  868. The Compare directories (C-x d) command compares the
  869. directory panels with each other. You can then use the
  870. Copy (F5) command to make the panels identical. There are
  871. three compare methods. The quick method compares only file
  872. size and file date. The thorough method makes a full
  873. byte-by-byte compare. The thorough method is not available
  874. if the machine does not support the mmap(2) system call.
  875. The size-only compare method just compares the file sizes
  876. and does not check the contents or the date times, it just
  877. checks the file size.
  878.  
  879. The Command history command shows a list of typed
  880. commands. The selected command is copied to the command
  881. line. The command history can also be accessed by typing
  882. M-p or M-n.
  883.  
  884. The Directory hotlist (C-\)Hotlist command makes changing of the
  885. current directory to often used directories faster.
  886.  
  887. The External panelizeExternal panelize allows you to execute an external
  888. program, and make the output of that program the contents
  889. of the current panel.
  890.  
  891. Extension file editExtension File Edit command allows you to specify
  892. programs to executed when you try to execute, view, edit
  893. and do a bunch of other thing on files with certain
  894. extensions (filename endings). The Menu file editMenu File Edit
  895. command may be used for editing the user menu (which
  896. appears by pressing F2).
  897.  
  898. [Directory Tree]
  899. Directory Tree
  900.  
  901. The Directory Tree command shows a tree figure of the
  902. directories. You can select a directory from the figure
  903. and the Midnight Commander will change to that directory.
  904.  
  905. There are two ways to invoke the tree. The real directory
  906. tree command is available from Commands menu. The other
  907. way is to select tree view from the Left or Right menu.
  908.  
  909. To get rid of long delays the Midnight Commander creates
  910. the tree figure by scanning only a small subset of all the
  911. directories. If the directory which you want to see is
  912. missing, move to its parent directory and press C-r (or
  913. F2).
  914.  
  915. You can use the following keys:
  916.  
  917. General movement keysGeneral Movement Keys are accepted.
  918.  
  919. Enter.  In the directory tree, exits the directory tree and
  920. changes to this directory in the current panel. In the
  921. tree view, changes to this directory in the other panel
  922. and stays in tree view mode in the current panel.
  923.  
  924. C-r, F2 (Rescan).  Rescan this directory. Use this when the
  925. tree figure is out of date: it is missing subdirectories
  926. or shows some subdirectories which don't exist any more.
  927.  
  928. F3 (Forget).  Delete this directory from the tree figure.
  929. Use this to remove clutter from the figure. If you want
  930. the directory back to the tree figure press F2 in its
  931. parent directory.
  932.  
  933. F4 (Static/Dynamic).  Toggle between the dynamic navigation
  934. mode (default) and the static navigation mode.
  935.  
  936. In the static navigation mode you can use the Up and Down
  937. keys to select a directory. All known directories are
  938. shown.
  939.  
  940. In the dynamic navigation mode you can use the Up and Down
  941. keys to select a sibling directory, the Left key to move
  942. to the parent directory, and the Right key to move to a
  943. child directory. Only the parent, sibling and children
  944. directories are shown, others are left out. The tree
  945. figure changes dynamically as you traverse.
  946.  
  947. F5 (Copy).  Copy the directory.
  948.  
  949. F6 (RenMov).  Move the directory.
  950.  
  951. F7 (Mkdir).  Make a new directory below this directory.
  952.  
  953. F8 (Delete).  Delete this directory from the file system.
  954.  
  955. C-s, M-s.  Search the next directory matching the search
  956. string. If there is no such directory these keys will move
  957. one line down.
  958.  
  959. C-h, Backspace.  Delete the last character of the search
  960. string.
  961.  
  962. Any other character.  Add the character to the search
  963. string and move to the next directory which starts with
  964. these characters. In the tree view you must first activate
  965. the search mode by pressing C-s. The search string is
  966. shown in the mini status line.
  967.  
  968. The following actions are available only in the directory
  969. tree. They aren't supported in the tree view.
  970.  
  971. F1 (Help).  Invoke the help viewer and show this section.
  972.  
  973. Esc, F10.  Exit the directory tree. Do not change the
  974. directory.
  975.  
  976. The mouse is supported. A double-click behaves like Enter.
  977. See also the section on mouse support.Mouse Support
  978.  
  979. [Find File]
  980. Find File
  981.  
  982. The Find File feature first asks for the start directory
  983. for the search and the filename to be searched for. By
  984. pressing the Tree button you can select the start
  985. directory from the directory treeDirectory Tree figure. You can start
  986. the search by pressing the Ok button.
  987.  
  988. During the search you can stop from the Stop button and
  989. continue from the Start button.
  990.  
  991. You can browse the filelist with the up and down arrow
  992. keys. The Chdir button will change to the directory of the
  993. currently selected file. The Again button will ask for the
  994. parameters for a new search. The Quit button quits the
  995. search operation. The Panelize button will place the found
  996. files to the current directory panel so that you can do
  997. additional operations on them (view, copy, move, delete
  998. and so on). After panelizing you can press C-r to return
  999. to the normal file listing.
  1000.  
  1001. It is possible to have a list of directories that the Find
  1002. File command should skip during the search (for example,
  1003. you may want to avoid searches on a CDROM or on a NFS
  1004. directory that is mounted across a slow link).
  1005.  
  1006. Directories to be skipped should be set on the variable
  1007. find_ignore_dirs   in the Misc   section of your .mc.ini
  1008. file.
  1009.  
  1010. Directory components should be separated with a colon,
  1011. here is an example:
  1012.  
  1013. [Misc]
  1014. find_ignore_dirs=/cdrom:/nfs/wuarchive:/afs
  1015.  
  1016. You may consider using the External panelizeExternal panelize command for
  1017. some operations. Find file command is for simple queries
  1018. only, while using External panelize you can do as
  1019. mysterious searches as you would like.
  1020.  
  1021. [External panelize]
  1022. External panelize
  1023.  
  1024. The External panelize allows you to execute an external
  1025. program, and make the output of that program the contents
  1026. of the current panel.
  1027.  
  1028. For example, if you want to manipulate in one of the
  1029. panels all the symbolic links in the current directory,
  1030. you can use external panelization to run the following
  1031. command:
  1032.  
  1033. find . -type l -print
  1034. Upon command completion, the directory contents of the
  1035. panel will no longer be the directory listing of the
  1036. current directory, but all the files that are symbolic
  1037. links.
  1038.  
  1039. If you want to panelize all of the files that have been
  1040. downloaded from your ftp server, you can use this awk
  1041. command to extract the file name from the transfer log
  1042. files:
  1043.  
  1044. awk '$9 ~! /incoming/ { print $9 }' < /usr/adm/xferlog
  1045.  
  1046. You may want to save often used panelize commands under a
  1047. descriptive name, so that you can recall them quickly. You
  1048. do this by typing the command on the input line and
  1049. pressing Add new button. Then you enter a name under which
  1050. you want the command to be saved. Next time, you just
  1051. choose that command from the list and do not have to type
  1052. it again.
  1053.  
  1054. [Hotlist]
  1055. Hotlist
  1056.  
  1057. The Directory hotlist command shows the labels of the
  1058. directories in the directory hotlist. The Midnight
  1059. Commander will change to the directory corresponding to
  1060. the selected label. From the hotlist dialog, you can
  1061. remove already created label/directory pairs and add new
  1062. one. For adding you may want to use a standalone Add to
  1063. hotlist command (C-x h), which adds the current directory
  1064. into the directory hotlist, as well. The user is prompted
  1065. for a label for the directory.
  1066.  
  1067. This makes cd to often used directories faster. You may
  1068. consider using the CDPATH variable as described in
  1069. internal cd commandThe cd internal command description.
  1070.  
  1071. [Extension File Edit]
  1072. Extension File Edit
  1073.  
  1074. This will invoke your editor on the file ~/.mc.ext. The
  1075. format of this file is as follows (the format has changed
  1076. with version 3.0):
  1077.  
  1078. All lines starting with # or empty lines are thrown away.
  1079.  
  1080. Lines starting in the first column should have following
  1081. format:
  1082.  
  1083. keyword/descNL,  i.e. everything after keyword/  until new
  1084. line is desc
  1085.  
  1086. keyword can be:
  1087.  
  1088. shell  (desc is then any extension (no wildcards), i.e.
  1089. matches all the files *desc . Example: .tar matches *.tar)
  1090.  
  1091. regex  (desc is a regular expression)
  1092.  
  1093. type  (file matches this if `file %f` matches regular
  1094. expression desc (the filename: part from `file %f` is
  1095. removed))
  1096.  
  1097. default  (matches any file no matter what desc is)
  1098.  
  1099. Other lines should start with a space or tab and should be
  1100. of the format:
  1101.  
  1102. keyword=commandNL  (with no spaces around =), where keyword
  1103. should be:
  1104.  
  1105. Open  (if the user presses Enter or doubleclicks it), View
  1106. (F3), Edit  (F4), Drop  (user drops some files on it) or any
  1107. other user defined name (those will be listed in the
  1108. extension dependent pop-up menu). Icon  name is reserved
  1109. for future use by mc.
  1110.  
  1111. command  is any one-line shell command, with the simple
  1112. macro substitution.Macro Substitution
  1113.  
  1114. Target are evaluated from top to bottom (order is thus
  1115. important). If some actions are missing, search continues
  1116. as if this target didn't match (i.e. if a file matches the
  1117. first and second entry and View action is missing in the
  1118. first one, then on pressing F3 the View action from the
  1119. second entry will be used. default should catch all the
  1120. actions.
  1121.  
  1122. [Background jobs]
  1123. Background jobs
  1124.  
  1125. This lets you control the state of any background Midnight
  1126. Commander process (only copy and move files operations can
  1127. be done in the background). You can stop, restart and kill
  1128. a background job from here.
  1129.  
  1130. [Menu File Edit]
  1131. Menu File Edit
  1132.  
  1133. The user menu is a menu of useful actions that can be
  1134. customized by the user. When you access the user menu, the
  1135. file ~/.mc.menu is used if it exists, and otherwise mc
  1136. uses the default system-wide menu @prefix@/lib/mc/mc.menu.
  1137.  
  1138. The format of the menu file is very simple. Lines that
  1139. start with anything but space or tab are considered
  1140. entries for the menu (in order to be able to use it like a
  1141. hot key, the first character should be a letter). All the
  1142. lines that start with a space or a tab are the commands
  1143. that will be executed when the entry is selected.
  1144.  
  1145. When an option is selected all the command lines of the
  1146. option are copied to a temporary file in the temporary
  1147. directory (usually /usr/tmp) and then that file is
  1148. executed. This allows the user to put normal shell
  1149. constructs in the menus. Also simple macro substitution
  1150. takes place before executing the menu code. For more
  1151. information, see macro substitution.Macro Substitution
  1152.  
  1153. Here is a sample mc.menu file:
  1154.  
  1155. A    Dump the currently selected file
  1156.     od -c %f
  1157.  
  1158. B    Edit a bug report and send it to root
  1159.     vi /tmp/mail.$$
  1160.     mail -s "Midnight Commander bug" root < /tmp/mail.$$
  1161.  
  1162. M    Read mail
  1163.     emacs -f rmail
  1164.  
  1165. N    Read Usenet news
  1166.     emacs -f gnus
  1167.  
  1168. H    Call the info hypertext browser
  1169.     info
  1170.  
  1171. J    Copy current directory to other panel recursively
  1172.     tar cf - . | (cd %D && tar xvpf -)
  1173.  
  1174. K    Make a release of the current subdirectory
  1175.     echo -n "Name of distribution file: "
  1176.     read tar
  1177.     ln -s %d `dirname %d`/$tar 
  1178.     cd ..
  1179.     tar cvhf ${tar}.tar $tar
  1180.  
  1181. = f *.tar.gz | f *.tgz & t n
  1182. X       Extract the contents of a compressed tar file
  1183.     tar xzvf %f
  1184.  
  1185. Default Conditions
  1186.  
  1187. Each menu entry may be preceded by a condition. The
  1188. condition must start from the first column with a '='
  1189. character. If the condition is true, the menu entry will
  1190. be the default entry.
  1191.  
  1192. Condition syntax:     = <sub-cond>
  1193.   or:            = <sub-cond> | <sub-cond> ...
  1194.   or:            = <sub-cond> & <sub-cond> ... 
  1195.  
  1196. Sub-condition is one of following:
  1197.  
  1198.   f <pattern>        current file matching pattern?
  1199.   F <pattern>        other file matching pattern?
  1200.   d <pattern>        current directory matching pattern?
  1201.   D <pattern>        other directory matching pattern?
  1202.   t <type>        current file of type?
  1203.   T <type>        other file of type?
  1204.   ! <sub-cond>        negate the result of sub-condition
  1205.  
  1206. Pattern is a normal shell pattern or a regular expression,
  1207. according to the shell patterns option. You can override
  1208. the global value of the shell patterns option by writing
  1209. "shell_patterns=x" on the first line of the menu file
  1210. (where "x" is either 0 or 1).
  1211.  
  1212. Type is one or more of the following characters:
  1213.  
  1214.   n    not directory
  1215.   r    regular file
  1216.   d    directory
  1217.   l    link
  1218.   c    char special
  1219.   b    block special
  1220.   f    fifo
  1221.   s    socket
  1222.   x    executable
  1223.   t    tagged
  1224.  
  1225. For example 'rlf' means either regular file, link or fifo.
  1226. The 't' type is a little special because it acts on the
  1227. panel instead of the file. The condition '=t t' is true if
  1228. there are tagged files in the current panel and false if
  1229. not.
  1230.  
  1231. If the condition starts with '=?' instead of '=' a debug
  1232. trace will be shown whenever the value of the condition is
  1233. calculated.
  1234.  
  1235. The conditions are calculated from left to right. This
  1236. means
  1237.     = f *.tar.gz | f *.tgz & t n
  1238. is calculated as
  1239.     ( (f *.tar.gz) | (f *.tgz) ) & (t n)
  1240.  
  1241. Here is a sample of the use of conditions:
  1242.  
  1243. = f *.tar.gz | f *.tgz & t n
  1244. L    List the contents of a compressed tar-archive
  1245.     gzip -cd %f | tar xvf -
  1246.  
  1247. Addition Conditions
  1248.  
  1249. If the condition begins with '+' (or '+?') instead of '='
  1250. (or '=?') it is an addition condition. If the condition is
  1251. true the menu entry will be included in the menu. If the
  1252. condition is false the menu entry will not be included in
  1253. the menu.
  1254.  
  1255. You can combine default and addition conditions by
  1256. starting condition with '+=' or '=+' (or '+=?' or '=+?' if
  1257. you want debug trace). If you want to use two different
  1258. conditions, one for adding and another for defaulting, you
  1259. can precede a menu entry with two condition lines, one
  1260. starting with '+' and another starting with '='.
  1261.  
  1262. Comments are started with '#'. The additional comment
  1263. lines must start with '#', space or tab.
  1264.  
  1265. [Options Menu]
  1266. Options Menu
  1267.  
  1268. The ConfigurationConfiguration command pops up a dialog from which you
  1269. can change most of settings of the Midnight Commander.
  1270.  
  1271. The Display bitsDisplay bits command pops up a dialog from which you
  1272. may select which characters is your terminal able to
  1273. display.
  1274.  
  1275. The ConfirmationConfirmation command pops up a dialog from which you
  1276. specify which actions you want to confirm.
  1277.  
  1278. The Learn keysLearn keys command pops up a dialog from which you
  1279. test some keys which are not working on some terminals and
  1280. you may fix them.
  1281.  
  1282. The Virtual FSVirtual FS command pops up a dialog from which you
  1283. specify some VFS related options.
  1284.  
  1285. The LayoutLayout command pops up a dialog from which you specify
  1286. a bunch of options how mc looks like on the screen.
  1287.  
  1288. The Save setupSave Setup command saves the current settings of the
  1289. Left, Right and Options menus. A small number of other
  1290. settings is saved, too.
  1291.  
  1292. [Configuration]
  1293. Configuration
  1294.  
  1295. The program has some options that may be toggled on and
  1296. off from the Configuration dialog. Options are enabled if
  1297. they have an asterisk or "x" in front of them. These
  1298. options are divided into three groups: Screen Colors,
  1299. Panel Options and Other Options.
  1300.  
  1301. Screen Colors
  1302.  
  1303. You can select whether your display supports color or not.
  1304. Normally this information is in the terminfo database. If
  1305. you want to know how to change individual colors see the
  1306. section on Colors.Colors
  1307.  
  1308. Panel Options
  1309.  
  1310. Show Backup Files.  By default the Midnight Commander
  1311. doesn't show files ending in '~' (like GNU's ls option
  1312. -B).
  1313.  
  1314. Show Hidden Files.  By default the Midnight Commander will
  1315. show all files that start with a dot (like ls -a).
  1316.  
  1317. Mark moves down.  By default when you mark a file (with
  1318. either C-t or the Insert key) the selection bar will move
  1319. down.
  1320.  
  1321. Show Mini-Status.  If enabled, show one line of status
  1322. information at the bottom of the panels about the
  1323. currently selected item.
  1324.  
  1325. Mix all files.  When this option is enabled, all files and
  1326. directories are shown mixed together. If the option is
  1327. off, directories (and links to directories) are shown at
  1328. the beginning of the listing, and other files afterwards.
  1329.  
  1330. Fast directory reload.  This option is off by default. If
  1331. you activate the fast reload, the Midnight Commander will
  1332. use a trick to determine if the directory contents have
  1333. changed. The trick is to reload the directory only if the
  1334. i-node of the directory has changed; this means that
  1335. reloads only happen when files are created or deleted. If
  1336. what changes is the i-node for a file in the directory
  1337. (file size changes, mode or owner changes, etc) the
  1338. display is not updated. In these cases, if you have the
  1339. option on, you have to rescan the directory manually (with
  1340. C-r).
  1341.  
  1342. Other Options
  1343.  
  1344. Verbose operation.  This toggles whether the file Copy,
  1345. Rename and Delete operations are verbose (i.e., display a
  1346. dialog box for each operation). If you have a slow
  1347. terminal, you may wish to disable the verbose operation.
  1348. It is automatically turned off if the speed of your
  1349. terminal is less than 9600 bps.
  1350.  
  1351. Pause after run.  After executing your commands, the
  1352. Midnight Commander can pause, so that you can examine the
  1353. output of the command. There are three possible settings
  1354. for this variable: Never  Means that you do not want to see
  1355. the output of your command. If you are using the Linux
  1356. console or an xterm, you will be able to see the output of
  1357. the command by typing C-o. "On dumb terminals"  You will
  1358. get the pause message on terminals that are not capable of
  1359. showing the output of the last command executed (any
  1360. terminal that is not an xterm or the Linux console).
  1361. Always  The program will pause after executing all of your
  1362. commands.
  1363.  
  1364. Shell Patterns.  By default the Select, Unselect and Filter
  1365. commands will use shell-like regular expressions. The
  1366. following conversions are performed to achieve this: the
  1367. '*' is replaced by '.*' (zero or more characters); the '?'
  1368. is replaced by '.' (exactly one character) and '.' by the
  1369. literal dot. If the option is disabled, then the regular
  1370. expressions are the ones described in ed(1).
  1371.  
  1372. Auto Save Setup.  If this option is enabled, when you exit
  1373. the Midnight Commander the configurable options of the
  1374. Midnight Commander are saved in the $HOME/.mc.ini file.
  1375.  
  1376. Auto menus.  If this option is enabled, the user menu will
  1377. be invoked at startup. Useful for building menus for
  1378. non-unixers.
  1379.  
  1380. Use internal editor.  If this option is enabled, the
  1381. built-in file editor is used to edit files. If the option
  1382. is disabled, the editor specified in the EDITOR
  1383. environment variable is used. If no editor is specified,
  1384. vi  is used. See the section on the internal file editor.Internal File Editor
  1385.  
  1386. Use internal viewer.  If this option is enabled, the
  1387. built-in file viewer is used to view files. If the option
  1388. is disabled, the pager specified in the PAGER  environment
  1389. variable is used. If no pager is specified, the view
  1390. command is used. See the section on the internal file
  1391. viewer.Internal File Viewer
  1392.  
  1393. Confirm Delete.  This option is toggled on by default, and
  1394. will cause the Midnight Commander to ask for confirmation
  1395. when deleting a single file.
  1396.  
  1397. Cd follows links.  This option, if set, causes the Midnight
  1398. Commander to follow the logical chain of directories when
  1399. changing current directory either in the panels, or using
  1400. the cd command. This is the default behavior of bash. When
  1401. unset, the Midnight Commander follows the real directory
  1402. structure, so cd .. if you've entered that directory
  1403. through a link will move you to the current directory's
  1404. real parent and not to the directory where the link was
  1405. present.
  1406.  
  1407. [Display bits]
  1408. Display bits
  1409.  
  1410. This is used to configure the range of visible characters
  1411. on the screen. This setting may be 7-bits if your
  1412. terminal/curses supports only seven output bits,
  1413. ISO-8859-1 displays all the characters in the ISO-8859-1
  1414. map and full 8 bits is for those terminals that can
  1415. display full 8 bit characters.
  1416.  
  1417. [Confirmation]
  1418. Confirmation
  1419.  
  1420. In this menu you configure the confirmation options for
  1421. file deletion, overwriting, execution by pressing enter
  1422. and quitting the program.
  1423.  
  1424. [Learn keys]
  1425. Learn keys
  1426.  
  1427. This dialog lets you test if your keys F1-F20, Home, End,
  1428. etc. work properly on your terminal. They often don't,
  1429. since many terminal databases are broken.
  1430.  
  1431. You can move around with the Tab key, with the vi moving
  1432. keys ('h' left, 'j' down, 'k' up and 'l' right) and after
  1433. you press any arrow key once (this will mark it OK), then
  1434. you can use that key as well.
  1435.  
  1436. You test them just by pressing each of them. As soon as
  1437. you press a key and the key works properly, OK should
  1438. appear next to the name of that key. Once a key is marked
  1439. OK it starts to work as usually, e.g. F1 for the first
  1440. time will just check that F1 works OK, but from that time
  1441. on it will show help. The same applies to the arrow keys.
  1442. Tab key should be working always.
  1443.  
  1444. If some keys do not work properly, then you won't see OK
  1445. after the key name after you have pressed that key. You
  1446. may then want to fix it. You do it by pressing the button
  1447. of that key (either by mouse or using Tab and Enter). Then
  1448. a red message will appear and you will be asked to type
  1449. that key. If you want to abort this, press just Esc and
  1450. wait until the message disappears. Otherwise type the key
  1451. you're asked to type and also wait until the dialog
  1452. disappears.
  1453.  
  1454. When you finish with all the keys, you may want either to
  1455. Save your key fixes into your .mc.ini file into the
  1456. [terminal:TERM] section (where TERM is the name of your
  1457. current terminal) or to discard them. If all your keys
  1458. were working properly and you had not to fix any key, then
  1459. (of course) no saving will occur.
  1460.  
  1461. [Virtual FS]
  1462. Virtual FS
  1463.  
  1464. This option gives you control over the settings of the
  1465. Virtual File System Virtual File System information cache.
  1466.  
  1467. The Midnight Commander keeps in memory the information
  1468. related to some of the virtual file systems to speed up
  1469. the access to the files in the file system. Since the
  1470. information that must be kept may be large (for example,
  1471. compressed tar files may be kept in RAM for faster
  1472. access), you may want to tune the parameters of the cached
  1473. information to decrease your memory usage or to maximize
  1474. the speed of access to frequently used file systems.
  1475.  
  1476. The Tar file system is quite clever about how it handles
  1477. tar files: it just loads the directory entries and when it
  1478. needs to use the information contained in the tar file, it
  1479. goes and grab it.
  1480.  
  1481. In the wild, tar files are usually kept compressed (plain
  1482. tar files are species in extinction), and because of the
  1483. nature of those files (the directory entries for the tar
  1484. files is not there waiting for us to be loaded), the tar
  1485. file system has two choices: load the complete,
  1486. uncompressed tar file into memory or uncompress the file
  1487. in the disk in a temporary location and then access the
  1488. uncompressed file as a regular tar file.
  1489.  
  1490. In this dialog box you tell the Midnight Commander which
  1491. sizes for compressed tar files you will tolerate to load
  1492. into your precious memory. The default setting is set to
  1493. one megabyte, this means that compressed tar files whose
  1494. size is at most one megabyte will be loaded into core,
  1495. otherwise a temporary uncompressed tar file will be
  1496. created to access the contents (all of this is transparent
  1497. to the user).
  1498.  
  1499. The program will let you add a suffix to specify the units
  1500. of the number you typed in, use 'k' for kilobyte and 'm'
  1501. for megabyte. Our routine does not accept floating point
  1502. numbers, so you can't use ".5 m" to specify 512 kilobytes,
  1503. you will have to use "512 k" instead.
  1504.  
  1505. Now, since we all love to browse files and tar files all
  1506. over the disk, it's common that you will leave a tar file
  1507. and the re-enter it later. Since uncompression is slow,
  1508. the Midnight Commander will cache the information in
  1509. memory for a limited amount of time, after you hit the
  1510. timeout, all of the memory resources associated with the
  1511. file system will be freed. The default timeout is set to
  1512. one minute.
  1513.  
  1514. [Layout]
  1515. Layout
  1516.  
  1517. The layout dialog gives you a possibility to change the
  1518. general layout of screen. You can specify whether the
  1519. menubar, the command prompt, the hintbar and the function
  1520. keybar are visible. On the Linux console you can specify
  1521. how many lines are shown in the output window.
  1522.  
  1523. The rest of the screen area is used for the two directory
  1524. panels. You can specify whether the area is split to the
  1525. panels in vertical or horizontal direction. The split can
  1526. be equal or you can specify an unequal split.
  1527.  
  1528. [Save Setup]
  1529. Save Setup
  1530.  
  1531. At startup the Midnight Commander will try to load
  1532. initialization information from the $HOME/.mc.ini file. If
  1533. this file doesn't exist, it will load the information from
  1534. the system-wide configuration file, located in
  1535. @prefix@/lib/mc/mc.ini. If the system-wide configuration
  1536. file doesn't exist, MC uses the default settings.
  1537.  
  1538. The Save Setup  command creates the $HOME/.mc.ini file by
  1539. saving the current settings of the Left, RightLeft and Right Menus and
  1540. OptionsOptions Menu menus.
  1541.  
  1542. If you activate the auto save setup  option, MC will always
  1543. save the current settings when exiting.
  1544.  
  1545. There also exist settings which can't be changed from the
  1546. menus. To change these settings you have to edit the setup
  1547. file with your favorite editor. See the section on Special
  1548. SettingsSpecial Settings for more information.
  1549.  
  1550. []
  1551.  
  1552.  
  1553. [Executing operating system commands]
  1554. Executing operating system commands
  1555.  
  1556. You may execute commands by typing them directly in the
  1557. Midnight Commander's input line, or by selecting the
  1558. program you want to execute with the selection bar in one
  1559. of the panels and hitting Enter.
  1560.  
  1561. If you press Enter over a file that is not executable, the
  1562. Midnight Commander checks the extension of the selected
  1563. file against the extensions in the Extensions File.Extension File Edit If a
  1564. match is found then the code associated with that
  1565. extension is executed. A very simple macro expansionMacro Substitution
  1566. takes place before executing the command.
  1567.  
  1568. [The cd internal command]
  1569. The cd internal command
  1570.  
  1571. The cd  command is interpreted by the Midnight Commander,
  1572. it is not passed to the command shell for execution. Thus
  1573. it may not handle all of the nice macro expansion and
  1574. substitution that your shell does, although it does some
  1575. of them:
  1576.  
  1577. Tilde substitution  The (~) will be substituted with your
  1578. home directory, if you append a username after the tilde,
  1579. then it will be substituted with the login directory of
  1580. the the specified user.
  1581.  
  1582. For example, ~guest is the home directory for the user
  1583. guest, while ~/guest is the directory guest in your home
  1584. directory.
  1585.  
  1586. Previous directory  You can jump to the directory you were
  1587. previously by using the special directory name '-' like
  1588. this: cd -
  1589.  
  1590. CDPATH directories  If the directory specified to the cd 
  1591. command is not in the current directory, then The Midnight
  1592. Commander uses the value in the environment variable
  1593. CDPATH  to search for the directory in any of the named
  1594. directories.
  1595.  
  1596. For example you could set your CDPATH  variable to
  1597. ~/src:/usr/src, allowing you to change your directory to
  1598. any of the directories inside the ~/src and /usr/src
  1599. directories, from any place in the file system by using
  1600. it's relative name (for example cd linux could take you to
  1601. /usr/src/linux).
  1602.  
  1603. [Macro Substitution]
  1604. Macro Substitution
  1605.  
  1606.  
  1607. When accessing a user menu, Menu File Edit or executing an extension
  1608. dependent command,Extension File Edit or running a command from the command
  1609. line input, a simple macro substitution takes place.
  1610.  
  1611. The macros are:
  1612.  
  1613. "%f"  The current file name.
  1614.  
  1615. "%d"  The current directory name.
  1616.  
  1617. "%F"  The current file in the unselected panel.
  1618.  
  1619. "%D"  The directory name of the unselected panel.
  1620.  
  1621. "%t"  The currently tagged files.
  1622.  
  1623. "%T"  The tagged files in the unselected panel.
  1624.  
  1625. "%u"  and "%U"  Similar to the %t and %T macros, but in
  1626. addition the files are untagged. You can use this macro
  1627. only once per menu file entry or extension file entry,
  1628. because next time there will be no tagged files.
  1629.  
  1630. "%s"  and "%S"  The selected files: The tagged files if
  1631. there are any. Otherwise the current file.
  1632.  
  1633. "%q"  Dropped files. In all places except in the Drop
  1634. action of the mc.ext file,Extension File Edit this will become a null
  1635. string, in the Drop action it will be replaced with a
  1636. space separated list of files that were dropped on the
  1637. file.
  1638.  
  1639. "%cd"  This is a special macro that is used to change the
  1640. current directory to the directory specified in front of
  1641. it. This is used primarily as an interface to the Virtual
  1642. File System.Virtual File System
  1643.  
  1644. "%view"  This macro is used to invoke the internal viewer.
  1645. This macro can be used alone, or with arguments. If you
  1646. pass any arguments to this macro, they should be enclosed
  1647. in brackets. The arguments are: ascii  to force the viewer
  1648. into ascii mode; hex  to force the viewer into hex mode;
  1649. nroff  to tell the viewer that it should interpret the bold
  1650. and underline sequences of nroff; unformated  to tell the
  1651. viewer to not interpret nroff commands for making the text
  1652. bold or underlined.
  1653.  
  1654. "%%"  The % character
  1655.  
  1656. "%{some text}"  Prompt for the substitution. An input box
  1657. is shown and the text inside the braces is used as a
  1658. prompt. The macro is substituted by the text typed by the
  1659. user. The user can press ESC or F10 to cancel. This macro
  1660. doesn't work on the command line yet.
  1661.  
  1662. [The subshell support]
  1663. The subshell support
  1664.  
  1665. The subshell support is a compile time option, that works
  1666. with the shells: bash, tcsh and zsh.
  1667.  
  1668. When the subshell code is activated the Midnight Commander
  1669. will spawn a concurrent copy of your shell (the one
  1670. defined in the SHELL  variable and if it is not defined,
  1671. then the one in the /etc/passwd file) and run it in a
  1672. pseudo terminal, instead of invoking a new shell each time
  1673. you execute a command, the command will be passed to the
  1674. subshell as if you had typed it. This also allows you to
  1675. change the environment variables, use shell functions and
  1676. define aliases that are valid until you quit the Midnight
  1677. Commander.
  1678.  
  1679. If you are using bash  you can specify startup commands for
  1680. the subshell in your ~/.mc.bashrc file and special
  1681. keyboard maps in the ~/.mc.inputrc file. tcsh   users may
  1682. specify startup commands in the ~/.mc.tcshrc file.
  1683.  
  1684. When the subshell code is used, you can suspend
  1685. applications at any time with the sequence C-o and jump
  1686. back to the Midnight Commander, if you interrupt an
  1687. application, you will not be able to run other external
  1688. commands until you quit the application you interrupted.
  1689.  
  1690. An extra added feature of using the subshell is that the
  1691. prompt displayed by the Midnight Commander is the same
  1692. prompt that you are currently using in your shell.
  1693.  
  1694. The OPTIONS section has more information on how you can
  1695. control the subshell code.
  1696.  
  1697. [Controlling Midnight Commander]
  1698. Controlling Midnight Commander
  1699.  
  1700. The Midnight Commander defines an environment variable
  1701. MC_CONTROL_FILE. The commands executed by MC may give
  1702. instructions to MC by writing to the file specified by
  1703. this variable. This is only available if you compiled your
  1704. copy of the Midnight Commander with the WANT_PARSE option.
  1705.  
  1706. The following instructions are supported.
  1707.  
  1708. clear_tags        Clear all tags.
  1709. tag <filename>        Tag specified file.
  1710. untag <filename>    Untag specified file.
  1711. select <filename>    Move pointer to file.
  1712. change_panel        Switch between panels.
  1713. cd <path>        Change directory.
  1714.  
  1715. If the first letter of the instruction is in lower case it
  1716. operates on the current panel. If the letter is in upper
  1717. case the instruction operates on the other panel. The
  1718. additional letters must be in lower case. Instructions
  1719. must be separated by exactly one space, tab or newline.
  1720. The instructions don't work in the Info, Tree and Quick
  1721. views. The first error causes the rest to be ignored.
  1722.  
  1723. [Chmod]
  1724. Chmod
  1725.  
  1726. The Chmod window is used to change the attribute bits in a
  1727. group of files and directories. It can be invoked with the
  1728. C-x c key combination.
  1729.  
  1730. The Chmod window has two parts - Permissions  and File
  1731.  
  1732. In the File section are displayed the name of the file or
  1733. directory and its permissions in octal form, as well as
  1734. its owner and group.
  1735.  
  1736. In the Permissions section there is a set of check buttons
  1737. which correspond to the file attribute bits. As you change
  1738. the attribute bits, you can see the octal value change in
  1739. the File section.
  1740.  
  1741. To move between the widgets (buttons and check buttons)
  1742. use the arrow keys  or the Tab  key. To change the state of
  1743. the check buttons or to select a button use Space.  You can
  1744. also use the hotkeys on the buttons to quickly activate
  1745. that selection (they are the highlit letters on the
  1746. buttons).
  1747.  
  1748. To set the attribute bits, use the Enter key.
  1749.  
  1750. When working with a group of files or directories, you
  1751. just click on the bits you want to set or clear. Once you
  1752. have selected the bits you want to change, you select one
  1753. of the action buttons (Set marked or Clear marked).
  1754.  
  1755. Finally, to set the attributes exactly to those specified,
  1756. you can use the [Set all]  button, which will act on all
  1757. the tagged files.
  1758.  
  1759. [Marked all]  set only marked attributes to all selected
  1760. files
  1761.  
  1762. [Set marked]  set marked bits in attributes of all selected
  1763. files
  1764.  
  1765. [Clean marked]  clear marked bits in attributes of all
  1766. selected files
  1767.  
  1768. [Set]  set the attributes of one file
  1769.  
  1770. [Cancel]  cancel the Chmod command
  1771.  
  1772. [Chown]
  1773. Chown
  1774.  
  1775. The Chown command is used to change the owner/group of a
  1776. file. The hot key for this command is C-x o.
  1777.  
  1778. [File Operations]
  1779. File Operations
  1780.  
  1781. When you copy, move or delete files the Midnight Commander
  1782. shows the file operations dialog. It shows the files
  1783. currently being operated on and there are at most three
  1784. progress bars. The file bar tells how big part of the
  1785. current file has been copied so far. The count bar tells
  1786. how many of tagged files have been handled so far. The
  1787. bytes bar tells how big part of total size of the tagged
  1788. files has been handled so far. If the verbose option is
  1789. off the file and bytes bars are not shown.
  1790.  
  1791. There are two buttons at the bottom of the dialog.
  1792. Pressing the Skip button will skip the rest of the current
  1793. file. Pressing the Abort button will abort the whole
  1794. operation, the rest of the files are skipped.
  1795.  
  1796. There are three other dialogs which you can run into
  1797. during the file operations.
  1798.  
  1799. The error dialog informs about error conditions and has
  1800. three choices. Normally you select either the Skip button
  1801. to skip the file or the Abort button to abort the
  1802. operation altogether. You can also select the Retry button
  1803. if you fixed the problem from another terminal.
  1804.  
  1805. The replace dialog is shown when you attempt to copy or
  1806. move a file on the top of an existing file. The dialog
  1807. shows the dates and sizes of the both files. Press the Yes
  1808. button to overwrite the file, the No button to skip the
  1809. file, the alL button to overwrite all the files, the nonE
  1810. button to never overwrite and the Update button to
  1811. overwrite if the source file is newer than the target
  1812. file. You can abort the whole operation by pressing the
  1813. Abort button.
  1814.  
  1815. The recursive delete dialog is shown when you try to
  1816. delete a directory which is not empty. Press the Yes
  1817. button to delete the directory recursively, the No button
  1818. to skip the directory, the alL button to delete all the
  1819. directories and the nonE button to skip all the non-empty
  1820. directories. You can abort the whole operation by pressing
  1821. the Abort button. If you selected the Yes or alL button
  1822. you will be asked for a confirmation. Type "yes" only if
  1823. you are really sure you want to do the recursive delete.
  1824.  
  1825. If you have tagged files and perform an operation on them
  1826. only the files on which the operation succeeded are
  1827. untagged. Failed and skipped files are left tagged.
  1828.  
  1829. [Mask Copy/Rename]
  1830. Mask Copy/Rename
  1831.  
  1832. The copy/move operations lets you translate the names of
  1833. files in an easy way. To do it, you have to specify the
  1834. correct source mask and usually in the trailing part of
  1835. the destination specify some wildcards. All the files
  1836. matching the source mask are copied/renamed according to
  1837. the target mask. If there are tagged files, only the
  1838. tagged files matching the source mask are renamed.
  1839.  
  1840. There are other option which you can set:
  1841.  
  1842. Follow symlinks tells whether make the symlinks in the
  1843. source directory (not recursively in subdirectories) new
  1844. symlinks in the target directory or whether would you like
  1845. to copy their content.
  1846.  
  1847. Dive into subdirs tells what to do if in the target
  1848. directory exists a directory with the same name as the
  1849. file/directory being copied. The default action is to copy
  1850. it into that directory, by disabling this you can copy a
  1851. directory's content into that directory. Perhaps an
  1852. example will help:
  1853.  
  1854. You want to copy content of a directory foo to /bla/foo,
  1855. which is an already existing directory. Normally (when
  1856. Dive is set), mc would copy the content into /bla/foo/foo,
  1857. 'cause the directory already exists. By disabling this
  1858. option you will copy it exactly into /bla/foo.
  1859.  
  1860. If you are root, you can set Preserve UIDs/GIDs, if you
  1861. want to get the same owner and group of new files as the
  1862. ones of the source files.
  1863.  
  1864. "Use shell patterns on"
  1865.  
  1866. When the shell patterns option is on you can use the '*'
  1867. and '?' wildcards in the source mask. They work like they
  1868. do in the shell. In the target mask only the '*' and
  1869. '\<digit>' wildcards are allowed. The first '*' wildcard
  1870. in the target mask corresponds to the first wildcard group
  1871. in the source mask, the second '*' corresponds to the
  1872. second group and so on. The '\1' wildcard corresponds to
  1873. the first wildcard group in the source mask, the '\2'
  1874. wildcard corresponds to the second group and so on all the
  1875. way up to '\9'. The '\0' wildcard is the whole filename of
  1876. the source file.
  1877.  
  1878. Two examples:
  1879.  
  1880. If the source mask is "*.tar.gz", the destination is
  1881. "/bla/*.tgz" and the file to be copied is "foo.tar.gz",
  1882. the copy will be "foo.tgz" in "/bla".
  1883.  
  1884. Let's suppose you want to swap basename and extension so
  1885. that "file.c" will become "c.file" and so on. The source
  1886. mask for this is "*.*" and the destination is "\2.\1".
  1887.  
  1888. "Use shell patterns off"
  1889.  
  1890. When the shell patterns option is off the MC doesn't do
  1891. automatic grouping anymore. You must use '\(...\)'
  1892. expressions in the source mask to specify meaning for the
  1893. wildcards in the target mask. This is more flexible but
  1894. also requires more typing. Otherwise target masks are
  1895. similar to the situation when the shell patterns option is
  1896. on.
  1897.  
  1898. Two examples:
  1899.  
  1900. If the source mask is "^\(.*\)\.tar\.gz$", the destination
  1901. is "/bla/*.tgz" and the file to be copied is "foo.tar.gz",
  1902. the copy will be "/bla/foo.tgz".
  1903.  
  1904. Let's suppose you want to swap basename and extension so
  1905. that "file.c" will become "c.file" and so on. The source
  1906. mask for this is "^\(.*\)\.\(.*\)$" and the destination is
  1907. "\2.\1".
  1908.  
  1909. "Case Conversions"
  1910.  
  1911. You can also change the case of the filenames. If you use
  1912. '\u' or '\l' in the target mask the next character will be
  1913. converted to uppercase or lowercase correspondingly.
  1914.  
  1915. If you use '\U' or '\L' in the target mask the next
  1916. characters will be converted to uppercase or lowercase
  1917. correspondingly up to the next '\E' or next '\U', '\L' or
  1918. the end of the file name.
  1919.  
  1920. The '\u' and '\l' are stronger than '\U' and '\L'.
  1921.  
  1922. For example, if the source mask is '*' (shell patterns on)
  1923. or '^\(.*\)$' (shell patterns off) and the target mask is
  1924. '\L\u*' the file names will be converted to have initial
  1925. upper case and otherwise lower case.
  1926.  
  1927. You can also use '\' as a quote character. For example,
  1928. '\\' is a backslash and '\*' is an asterisk.
  1929.  
  1930. [Internal File Viewer]
  1931. Internal File Viewer
  1932.  
  1933. The internal file viewer provides two display modes: ASCII
  1934. and hex. To toggle between modes, use the F4 key. If you
  1935. have the GNU gzip program installed, it will be used to
  1936. automatically decompress the files on demand.
  1937.  
  1938. The viewer will try to use the best method provided by
  1939. your system or the file type to display the information.
  1940. The internal file viewer will interpret some string
  1941. sequences to set the bold and underline attributes, thus
  1942. making a pretty display of your files.
  1943.  
  1944. When in hex mode, the search function accepts text in
  1945. quotes as well as hexadecimal constants.
  1946.  
  1947. You can mix quoted text with constants like this: "String"
  1948. 0xFE 0xBB "more text". Text between constants and quoted
  1949. text is just ignored.
  1950.  
  1951. Some internal details about the viewer: On systems that
  1952. provide the mmap(2) system call, the program maps the file
  1953. instead of loading it; if the system does not provide the
  1954. mmap(2) system call or the file matches an action that
  1955. requires a filter, then the viewer will use it's growing
  1956. buffers, thus loading only those parts of the file that
  1957. you actually access (this includes compressed files).
  1958.  
  1959. Here is a listing of the actions associated with each key
  1960. that the Midnight Commander handles in the internal file
  1961. viewer.
  1962.  
  1963. F1  Invoke the builtin hypertext help viewer.
  1964.  
  1965. F2  Toggle the wrap mode.
  1966.  
  1967. F4  Toggle the hex mode.
  1968.  
  1969. F5  Goto line. This will prompt you for a line number and
  1970. will display that line.
  1971.  
  1972. F6, /.   Regular expression search.
  1973.  
  1974. ?,  Reverse regular expression search.
  1975.  
  1976. F7  Normal search / hex mode search.
  1977.  
  1978. C-s.  Start normal search if there was no previous search
  1979. expression else find next match.
  1980.  
  1981. C-r.  Start reverse search if there was no previous search
  1982. expression else find next match.
  1983.  
  1984. n.  Find next match.
  1985.  
  1986. F8  Toggle Raw/Parsed mode: This will show the file as
  1987. found on disk or if a processing filter has been specified
  1988. in the mc.ext file, then the output from the filter.
  1989. Current mode is always the other than written on the
  1990. button label, since on the button is the mode which you
  1991. enter by that key.
  1992.  
  1993. F9  Toggle the format/unformat mode: when format mode is on
  1994. the viewer will interpret some string sequences to show
  1995. bold and underline with different colors. Also, on button
  1996. label is the other mode than current.
  1997.  
  1998. F10, Esc.  Exit the internal file viewer.
  1999.  
  2000. next-page, space, C-v.  Scroll one page forward.
  2001.  
  2002. prev-page, M-v, C-b, backspace.  Scroll one page backward.
  2003.  
  2004. down-key  Scroll one line forward.
  2005.  
  2006. up-key  Scroll one line backward.
  2007.  
  2008. C-l  Refresh the screen.
  2009.  
  2010. !  Spawn a shell in the currently working directory.
  2011.  
  2012. "[n] m"  Set the mark n.
  2013.  
  2014. "[n] r"  Jump to the mark n.
  2015.  
  2016. C-f  Jump to the next file.
  2017.  
  2018. C-b   Jump to the previous file.
  2019.  
  2020. M-r   Toggle the ruler.
  2021.  
  2022. It's possible to instruct the file viewer how to display a
  2023. file, look at the Extension File Edit sectionExtension File Edit[Internal File Editor]
  2024. Internal File Editor
  2025.  
  2026. The internal file editor provides most of the features of
  2027. common full screen editors. It is invoked using F4
  2028. provided the use_internal_edit  option is set in the
  2029. initialization file. It has an extensible file size limit
  2030. of sixteen megabytes and edits binary files flawlessly.
  2031. The features it presently supports are: Block copy, move,
  2032. delete, cut, paste; "key for key undo";   pull-down menus;
  2033. file insertion; macro definition; regular expression
  2034. search and replace (and our own scanf-printf search and
  2035. replace); shift-arrow MSW-MAC text highlighting (for the
  2036. linux console only); insert-overwrite toggle; and an
  2037. option to pipe text blocks through shell commands like
  2038. indent. The editor is very easy to use and requires no
  2039. tutoring. To see what keys do what, just consult the
  2040. appropriate pull-down menu. Other keys are: Shift movement
  2041. keys do text highlighting. Ctrl-Ins  copies to the file
  2042. cooledit.clip and   Shift-Ins  pastes from cooledit.clip.
  2043. Shift-Del   cuts to cooledit.clip,   and Ctrl-Del  deletes
  2044. highlighted text. The completion key also does a Return
  2045. with an automatic indent. Mouse highlighting also works,
  2046. and you can override the mouse as usual by holding down
  2047. the shift key while dragging the mouse to let normal
  2048. terminal mouse highlighting work. To define a macro, press
  2049. Ctrl-R  and then type out the key strokes you want to be
  2050. executed. Press Ctrl-R  again when finished. You can then
  2051. assign the macro to any key you like by pressing that key.
  2052. The macro is executed when you press Ctrl-A and then the
  2053. assigned key. The macro is also executed if  you press
  2054. Meta, Ctrl, or Esc and the assigned key, provided that the
  2055. key is not used for any other function. Once defined, the
  2056. macro commands go into the file cedit/cooledit.macros  in
  2057. your home directory. You can delete a macro by deleting
  2058. the appropriate line in this file. F19 will format C code
  2059. when it is highlighted. For this  to work, make an
  2060. executable file called cedit/edit.indent.rc  in your home
  2061. directory containing the following:
  2062. #!/bin/sh
  2063. /usr/bin/indent -kr -pcs ~/cedit/cooledit.block >& /dev/null
  2064. cat /dev/null > ~/cedit/cooledit.error
  2065. You can use scanf search and replace to search and replace
  2066. a C format string. First take a look at the sscanf  and
  2067. sprintf man pages to see what a format string  is and how
  2068. it works. An example is as follows: Suppose you want to
  2069. replace all occurences of say, an open bracket, three
  2070. comma seperated numbers, and a close bracket, with the
  2071. word apples,   the third number, the word oranges  and then
  2072. the second number, I would fill in the Replace dialog box
  2073. as follows:
  2074.  Enter search string
  2075. (%d,%d,%d)
  2076.  Enter replace string
  2077. apples %d oranges %d
  2078.  Enter replacement argument order
  2079. 3,2
  2080. The last line specifies that the third and then the second
  2081. number are to be used in place of the first and second. It
  2082. is advisable to use this feature with Prompt on replace
  2083. on, because a match is thought to be found whenever the
  2084. number of arguments found matches the number given, which
  2085. is not always a real match. Scanf also treats whitespace
  2086. as being elastic. Note that the scanf format % is very
  2087. useful for scanning strings, and whitespace. The editor
  2088. also displays non-us characters (160+). When editing
  2089. binary files, you should set display bits  to 7 bits in the
  2090. options menu to keep the spacing clean. See also the file
  2091. README.edit  in the source tree for some more info.
  2092.  
  2093. [Completion]
  2094. Completion
  2095.  
  2096.  
  2097. Let the Midnight Commander type for you.
  2098.  
  2099. Attempt to perform completion on the text before current
  2100. position. MC attempts completion treating the text as
  2101. variable (if the text begins with $  ), username (if the
  2102. text begins with ~  ), hostname (if the text begins with @
  2103. ) or command (if you are on the command line in the
  2104. position where you might type a command, possible
  2105. completions then include shell reserved words and shell
  2106. builtin commands as well) in turn. If none of these
  2107. produces a match, filename completion is attempted.
  2108.  
  2109. Filename, username, variable and hostname completion works
  2110. on all input lines, command completion is command line
  2111. specific. If the completion is ambiguous (there are more
  2112. different possibilities), MC beeps and the following
  2113. action depends on the setting of the show_all_if_ambiguousSpecial
  2114. Settingsvariable in the Initialization file. If it is nonzero, a
  2115. list of all possibilities pops up next to the current
  2116. position and you can select with the arrow keys and Enter
  2117. the correct entry. You can also type the first letters in
  2118. which the possibilities differ to move to a subset of all
  2119. possibilities and complete as much as possible. If you
  2120. press M-Tab  again, only the subset will be shown in the
  2121. listbox, otherwise the first item which matches all the
  2122. previous characters will be highlighted. As soon as there
  2123. is no ambiguity, dialog disappears, but you can hide it by
  2124. canceling keys Esc,  F10  and left and right arrow keys. If
  2125. show_all_if_ambiguousSpecial Settings is set to zero, the dialog pops up
  2126. only if you press M-Tab  for the second time, for the first
  2127. time MC just beeps.
  2128.  
  2129. [Virtual File System]
  2130. Virtual File System
  2131.  
  2132. The Midnight Commander is provided with a code layer to
  2133. access the file system; this code layer is known as the
  2134. virtual file system switch. The virtual file system switch
  2135. allows the Midnight Commander to manipulate files not
  2136. located on the Unix file system.
  2137.  
  2138. Currently the Midnight Commander is packaged with five
  2139. Virtual File Systems (VFS): the local file system, used
  2140. for accessing the regular Unix file system; the ftpfs,
  2141. used to manipulate files on remote systems with the FTP
  2142. protocol; the tarfs, used to manipulate tar and compressed
  2143. tar files; the undelfs, used to recover deleted files on
  2144. ext2 file systems (the default file system for Linux
  2145. systems) and finally the mcfs (Midnight Commander file
  2146. system), a network based file system.
  2147.  
  2148. The VFS switch code will interpret all of the path names
  2149. used and will forward them to the correct file system, the
  2150. formats used for each one of the file systems is described
  2151. later in their own section.
  2152.  
  2153. [FTP File System]
  2154. FTP File System
  2155.  
  2156. The ftpfs allows you to manipulate files on remote
  2157. machines, to actually use it, you may try to use the panel
  2158. command FTP link (accessible from the menubar) or you may
  2159. directly change your current directory to it using the cd
  2160. command to a path name that looks like this:
  2161.  
  2162. ftp://[!][user[:pass]@]machine[:port][remote-dir]
  2163.  
  2164. The, user, port  and remote-dir  elements are optional. If
  2165. you specify the user  element, then the Midnight Commander
  2166. will try to logon on the remote machine as that user,
  2167. otherwise it will use your login name. The optional pass
  2168. element, if present is the password used for the
  2169. connection. This use is not recomented (nor keeping this
  2170. in your hotlist, unless you set the appropiate permissions
  2171. there, and then, it may not be entirely safe anyways).
  2172.  
  2173. Examples:
  2174.  
  2175.     ftp://ftp.nuclecu.unam.mx/linux/local
  2176.     ftp://tsx-11.mit.edu/pub/linux/packages
  2177.     ftp://!behind.firewall.edu/pub
  2178.     ftp://guest@remote-host.com:40/pub
  2179.     ftp://miguel:xxx@server/pub
  2180.  
  2181. To connect to sites behind a firewall, you will need to
  2182. use the prefix ftp://! (ie, with a bang character after
  2183. the double slash) to make the Midnight Commander use a
  2184. proxy host for doing the ftp transfer. You can define the
  2185. proxy host in the Virtual File SystemVirtual FS dialog box.
  2186.  
  2187. Another option is to set the ftpfs_always_use_proxy
  2188. parameter in the initialization file. This will configure
  2189. the program to always use the proxy host. If this variable
  2190. is set, the program will do two things: consult the
  2191. @prefix@/lib/mc.no_proxy file for lines containing host
  2192. names that are local (if the host name starts with a dot,
  2193. it is assumed to be a domain) and to assume that any
  2194. hostnames without dots in their names are directly
  2195. accessible.
  2196.  
  2197. If you are using the ftpfs code with a filtering packet
  2198. router that does not allow you to use the regular mode of
  2199. opening files, you may want to force the program to use
  2200. the passive-open mode. To use this, set the
  2201. ftpfs_use_passive_connections option.
  2202.  
  2203. The Midnight Commander keeps the directory listing in a
  2204. cache. The cache expire time is configurable in the
  2205. Virtual File System Virtual FS dialog box. This has the funny
  2206. behavior that even if you make changes to a directory,
  2207. they will not be reflected in the directory listing until
  2208. you force a cache reload with the C-r key. This is a
  2209. feature (when you think it's a bug, think about
  2210. manipulating files on the other side of the Atlantic with
  2211. ftpfs).
  2212.  
  2213. [Tar File System]
  2214. Tar File System
  2215.  
  2216. The tar file system provides you with read-only access to
  2217. your tar files and compressed tar files by using the chdir
  2218. command. To change your directory to a tar file, you
  2219. change your current directory to the tar file by using the
  2220. following syntax:
  2221.  
  2222. tar:filename.tar[dir-inside-tar]
  2223.  
  2224. The mc.ext file already provides a shortcut for tar files,
  2225. this means that usually you just point to a tar file and
  2226. press return to enter into the tar file, see the Extension
  2227. File Edit Extension File Edit section for details on how this is done.
  2228.  
  2229. Examples:
  2230.  
  2231.     tar:mc-3.0.tar.gz/mc-3.0/vfs
  2232.     tar:/ftp/GCC/gcc-2.7.0.tar
  2233.  
  2234. The latter specifies the full path of the tar archive.
  2235.  
  2236. [Network File System]
  2237. Network File System
  2238.  
  2239. The Midnight Commander file system is a network base file
  2240. system that allows you to manipulate the files in a remote
  2241. machine as if they were local. To use this, the remote
  2242. machine must be running the mcserv(8) server program.
  2243.  
  2244. To connect to a remote machine, you just need to chdir
  2245. into a special directory which name is in the following
  2246. format:
  2247.  
  2248. mc:[user@]machine[:port][remote-dir]
  2249.  
  2250. The, user, port  and remote-dir  elements are optional. If
  2251. you specify the user  element then the Midnight Commander
  2252. will try to logon on the remote machine as that user,
  2253. otherwise it will use your login name.
  2254.  
  2255. The port  element is used when the remote machine running
  2256. on a special port (see the mcserv(8) manual page for more
  2257. information about ports); finally, if the remote-dir
  2258. element is present, your current directory on the remote
  2259. machine will be set to this one.
  2260.  
  2261. Examples:
  2262.  
  2263.     mc:ftp.nuclecu.unam.mx/linux/local
  2264.     mc:joe@foo.edu:11321/private
  2265.  
  2266. [Undelete File System]
  2267. Undelete File System
  2268.  
  2269. On Linux systems, if you asked configure to use the ext2fs
  2270. undelete facilities, you will have the undelete file
  2271. system available. Recovery of deleted files is only
  2272. available on ext2 file systems. The undelete file system
  2273. is just an interface to the ext2fs library to: retrieve
  2274. all of the deleted files names on an ext2fs and provides
  2275. and to extract the selected files into a regular
  2276. partition.
  2277.  
  2278. To use this file system, you have to chdir into the
  2279. special file name formed by the "undel:" prefix and the
  2280. file name where the actual file system resides.
  2281.  
  2282. For example, to recover deleted files on the second
  2283. partition of the first scsi disk on Linux, you would use
  2284. the following path name:
  2285.  
  2286.     undel:/dev/sda2
  2287.  
  2288. It may take a while for the undelfs to load the required
  2289. information before you start browsing files there.
  2290.  
  2291. [Colors]
  2292. Colors
  2293.  
  2294. The Midnight Commander will try to detect if your terminal
  2295. supports color using the terminal database and your
  2296. terminal name. Sometimes it gets confused, so you may
  2297. force color mode or disable color mode using the -c and -b
  2298. flag respectively.
  2299.  
  2300. If the program is compiled with the Slang screen manager
  2301. instead of ncurses, it will also check the variable
  2302. COLORTERM,  if it is set, it has the same effect as the -c
  2303. flag.
  2304.  
  2305. The program can be compiled with both ncurses and slang,
  2306. ncurses does not provide a way to force color mode:
  2307. ncurses uses just the information in the terminal
  2308. database.
  2309.  
  2310. The Midnight Commander provides a way to change the
  2311. default colors. Currently the colors are configured using
  2312. the environment variable MC_COLOR_TABLE   or the Colors
  2313. section in the initialization file.
  2314.  
  2315. In the Colors section, the default color map is loaded
  2316. from the base_color   variable. You can specify an
  2317. alternate color map for a terminal by using the terminal
  2318. name as the key in this section. Example:
  2319.  
  2320. [Colors]
  2321. base_color=
  2322. xterm=menu=magenta:marked=,magenta:markselect=,red
  2323.  
  2324. The format for the color definition is:
  2325.  
  2326.   <keyword>=<foregroundcolor>,<backgroundcolor>:<keyword>= ...
  2327.  
  2328. The colors are optional, and the keywords are: normal,
  2329. selected, marked, markselect, errors, reverse menu,
  2330. menusel, menuhot, menuhotsel, gauge; the dialog colors
  2331. are: dnormal, dfocus, dhotnormal, dhotfocus; Help colors
  2332. are: helpnormal, helpitalic, helpbold, helplink,
  2333. helpslink; Viewer color is: viewunderline.
  2334.  
  2335. The dialog boxes use the following colors: dnormal   is
  2336. used for the normal text, dfocus  is the color used for the
  2337. currently selected component, dhotnormal  is the color used
  2338. to differentiate the hotkey color in normal components,
  2339. whereas the dhotfocus  color is used for the highlighted
  2340. color in the currently selected component.
  2341.  
  2342. Menus use the same scheme but uses the menu, menusel,
  2343. menuhot and menuhotsel tags instead.
  2344.  
  2345. Help uses the following colors: helpnormal  is used for
  2346. normal text, helpitalic  is used for text which is
  2347. emphasized in italic in the manual page, helpbold  is used
  2348. for text which is emphasized in bold in the manual page,
  2349. helplink  is used for not selected hyperlinks and helpslink
  2350. is used for selected hyperlink.
  2351.  
  2352. gauge  determines color of filled part of the progress bar
  2353. (gauge), which shows how many percent of files were copied
  2354. etc. in a graphical way.
  2355.  
  2356. The possible colors are: black, red, green, brightgreen,
  2357. brown, yellow, blue, brightblue, magenta, brightmagenta,
  2358. cyan, brightcyan, lightgray and white.
  2359.  
  2360. If you are setting the colors from your private setup, you
  2361. could use this format:
  2362.  
  2363. colors=menu=magenta:marked=,magenta:markselect=,red
  2364.  
  2365. [Special Settings]
  2366. Special Settings
  2367.  
  2368. Most of the settings of the Midnight Commander can be
  2369. changed from the menus. However, there are a small number
  2370. of settings which can only be changed by editing the setup
  2371. file.
  2372.  
  2373. These variables may be set in your $HOME/.mc.ini file:
  2374.  
  2375. clear_before_exec.  By default the Midnight Commander
  2376. clears the screen before executing a command. If you would
  2377. prefer to see the output of the command at the bottom of
  2378. the screen, edit your ~/mc.ini file and change the value
  2379. of the field clear_before_exec to 0.
  2380.  
  2381. confirm_view_dir.  If you press F3 on a directory, normally
  2382. MC enters that directory. If this flag is set to 1, then
  2383. MC will ask for confirmation before changing the directory
  2384. if you have files tagged.
  2385.  
  2386. drop_menus.  If this variable is set, when you press the F9
  2387. key, the pull down menus will be activated, else, you will
  2388. only be presented with the menu title, and you will have
  2389. to select the entry with the arrow keys or the first
  2390. letter and from there select your option in the menu.
  2391.  
  2392. ftpfs_retry_seconds.  This value is the number of seconds
  2393. the Midnight Commander will wait before attempting a
  2394. reconnection to an ftp server that has denied the login.
  2395. If the value is zero, the the program will not retry the
  2396. login.
  2397.  
  2398. ftpfs_use_passive_connections.  This option is by off
  2399. default. This makes the ftpfs code use the passive open
  2400. mode for transfering files. This is used by people that
  2401. are behind a filtering packet router. This option just
  2402. works if you are not using an ftp proxy.
  2403.  
  2404. max_dirt_limit.  Specifies how many screen updates can be
  2405. skipped at most in the internal file viewer. Normally this
  2406. value is not significant, because the code automatically
  2407. adjusts the number of updates to skip according to the
  2408. rate of incoming keypresses. However, on very slow
  2409. machines or terminals with a fast keyboard auto repeat, a
  2410. big value can make screen updates too jumpy. It seems that
  2411. setting max_dirt_limit to 10 causes the best behavior, and
  2412. that is the default value.
  2413.  
  2414. mouse_move_pages.  Controls whenever scrolling with the
  2415. mouse is done by pages or line by line on the panels.
  2416.  
  2417. mouse_move_pages_viewer.  Controls if scrolling with the
  2418. mouse is done by pages or line by line on the internal
  2419. file viewer.
  2420.  
  2421. navigate_with_arrows.  If this setting is turned on, then
  2422. you may use the arrows keys to automatically chdir if the
  2423. current selection is a subdirectory and the shell command
  2424. line is empty. By default, this setting is off.
  2425.  
  2426. nice_rotating_dash  When on, this flag causes the commander
  2427. to show a rotating dash as a work in progress indicator.
  2428.  
  2429. old_esc_mode  By default the Midnight Commander treats the
  2430. ESC key as a key prefix (old_esc_mode=0), if you set this
  2431. option (old_esc_mode=1), then the ESC key will act as a
  2432. prefix key for one second, and if no extra keys have
  2433. arrived, then the ESC key is interpreted as a cancel key
  2434. (ESC ESC).
  2435.  
  2436.  
  2437. only_leading_plus_minus  set special treatment for '+',
  2438. '-', '*' in command line (select, unselect, reverse
  2439. selection) only if command line is empty. No need to quote
  2440. this characters in the middle of the command line. But we
  2441. can not change selection when command line is not empty.
  2442. panel_scroll_pages  If set (the default), panel will scroll
  2443. by half the display when the cursor reaches the end or the
  2444. beginning of the panel, otherwise it will just scroll a
  2445. file at a time.
  2446.  
  2447. preserve_uidgid  If this option is set (the default), when
  2448. logged in as root the default will be to preserve the UID
  2449. and the GID of files. Some users prefer to disable this
  2450. option, so that's why it's configurable.
  2451.  
  2452. show_output_starts_shell  This variable only works if you
  2453. are not using the subshell support. When you use the C-o
  2454. keystroke to go back to the user screen, if this one is
  2455. set, you will get a fresh shell. Otherwise, pressing any
  2456. key will bring you back to the Midnight Commander.
  2457.  
  2458. show_all_if_ambiguous.  By default the Midnight Commander
  2459. pops up all possible completionsCompletion if the completion is
  2460. ambiguous if you press M-Tab  for the second time, for the
  2461. first time it just completes as much as possible and in
  2462. the case of ambiguity beeps. If you want to see all the
  2463. possible completions already after the first M-Tab
  2464. pressing, set this option to 1.
  2465.  
  2466. torben_fj_mode  If this flag is set, then the home and end
  2467. keys will work slightly different on the panels, instead
  2468. of moving the selection to the first and last files in the
  2469. panels, they will act as follows: The home key will: Go up
  2470. to the middle line, if below it; else go to the top line
  2471. unless it is already on the top line, in this case it will
  2472. go to the first file in the panel. The end key has a
  2473. similar behavior: Go down to the middle line, if over it;
  2474. else go to the bottom line unless you already are at the
  2475. bottom line, in such case it will move the selection to
  2476. the last file name in the panel.
  2477.  
  2478. use_file_to_guess_type  If this variable is on (the
  2479. default) it will spawn the file command to match the file
  2480. types listed on the mc.ext file.Extension File Edit
  2481.  
  2482. xterm_mode  If this variable is on (default is off) when
  2483. you browse the file system on a Tree panel, it will
  2484. automatically reload the other panel with the contents of
  2485. the selected directory.
  2486.  
  2487. [Terminal databases]
  2488. Terminal databases
  2489.  
  2490. The Midnight Commander provides a way to fix your system
  2491. terminal database without requiring root privileges. The
  2492. Midnight Commander searches in the system initialization
  2493. file (the mc.lib file located in the Midnight Commander
  2494. library directory) or in the $HOME/.mc.ini file for the
  2495. section "terminal:your-terminal-name" and then for the
  2496. section "terminal:general", each line of the section
  2497. contains a key symbol that you want to define, followed by
  2498. an equal sign and the definition for the key. You can use
  2499. the special \E form to represent the escape character and
  2500. the ^x to represent the control-x character.
  2501.  
  2502. The possible key symbols are:
  2503.  
  2504. f0 to f20     Function keys f0-f20
  2505. bs          backspace
  2506. home          home key
  2507. end           end key
  2508. up            up arrow key
  2509. down          down arrow key
  2510. left          left arrow key
  2511. right         right arrow key
  2512. pgdn          page down key
  2513. pgup          page up key
  2514. insert        the insert character
  2515. delete        the delete character
  2516. complete      to do completion
  2517.  
  2518. For example, to define the key insert to be the Escape + [
  2519. + O + p, you set this in the ini file:
  2520.  
  2521. insert=\\E[Op
  2522.  
  2523. The complete  key symbol represents the escape sequences
  2524. used to invoke the completion process, this is invoked
  2525. with M-tab, but you can define other keys to do the same
  2526. work (on those keyboard with tons of nice and unused keys
  2527. everywhere).
  2528.  
  2529. []
  2530.  
  2531.  
  2532. [FILES]
  2533. FILES
  2534.  
  2535. @prefix@/lib/mc.hlp The help file for the program.
  2536.  
  2537. @prefix@/lib/mc/mc.ext The default system-wide extensions
  2538. file.
  2539.  
  2540. $HOME/.mc.ext User's own extension, view configuration and
  2541. edit configuration file. They override the contents of the
  2542. system wide files if present.
  2543.  
  2544. @prefix@/lib/mc/mc.ini The default system-wide setup for
  2545. the Midnight Commander, used only if the user lacks his
  2546. own ~/.mc.ini file.
  2547.  
  2548. @prefix@/lib/mc/mc.lib Global settings for the Midnight
  2549. Commander. Settings in this file are global to any
  2550. Midnight Commander, it is useful to define site-global
  2551. terminal settings.
  2552.  
  2553. $HOME/.mc.ini User's own setup. If this file is present
  2554. then the setup is loaded from here instead of the
  2555. system-wide startup file.
  2556.  
  2557. @prefix@/lib/mc/mc.hint This file contains the hints
  2558. (cookies) displayed by the program.
  2559.  
  2560. @prefix@/lib/mc/mc.menu This file contains the default
  2561. system-wide applications menu.
  2562.  
  2563. $HOME/.mc.menu User's own application menu. If this file
  2564. is present it is used instead of the system-wide
  2565. applications menu.
  2566.  
  2567. $HOME/.mc.tree The directory list for the directory tree
  2568. and tree view features. Each line is one entry. The lines
  2569. starting with a slash are full directory names. The lines
  2570. starting with a number have that many characters equal to
  2571. the previous directory. If you want you may create this
  2572. file by giving the command "find / -type d -print | sort >
  2573. ~/.mc.tree". Normally there is no sense in doing it
  2574. because the Midnight Commander automatically updates this
  2575. file for you.
  2576.  
  2577. [AVAILABILITY]
  2578. AVAILABILITY
  2579.  
  2580. The latest version of this program can be found at
  2581. ftp.nuclecu.unam.mx in the directory /linux/local and from
  2582. Europe at sunsite.mff.cuni.cz in the directory /GNU/mc and
  2583. at ftp.teuto.de in the directory /lmb/mc.[SEE ALSO]
  2584. SEE ALSO
  2585.  
  2586. ed(1), gpm(1), mcserv(8), terminfo(1), view(1), sh(1),
  2587. bash(1), tcsh(1), zsh(1).
  2588.  
  2589. The Midnight Commander page on the World Wide Web:
  2590.     http://mc.blackdown.org/mc
  2591.  
  2592. [AUTHORS]
  2593. AUTHORS
  2594.  
  2595. Miguel de Icaza (miguel@roxanne.nuclecu.unam.mx), Janne
  2596. Kukonlehto (jtklehto@paju.oulu.fi), Radek Doulik
  2597. (rodo@earn.cvut.cz), Fred Leeflang (fredl@nebula.ow.org),
  2598. Dugan Porter (dugan@b011.eunet.es), Jakub Jelinek
  2599. (jj@sunsite.mff.cuni.cz), Ching Hui
  2600. (u811563@Oz.nthu.edu.tw), Andrej Borsenkow
  2601. (borsenkow.msk@sni.de), Norbert Warmuth (k3190@fh-sw.de),
  2602. Mauricio Plaza (mok@roxanne.nuclecu.unam.mx) and Paul
  2603. Sheer (psheer@hertz.mech.wits.ac.za) are the developers of
  2604. this package; Alessandro Rubini (rubini@ipvvis.unipv.it)
  2605. has been especially helpful debugging and enhancing the
  2606. program's mouse support, John Davis (davis@space.mit.edu)
  2607. also made his S-Lang library available to us under the GPL
  2608. and answered my questions about it, and the following
  2609. people have contributed code and many bug fixes (in
  2610. alphabetical order):
  2611.  
  2612. Adam Tla/lka (atlka@sunrise.pg.gda.pl), Antonio Palama,
  2613. DOS port (palama@posso.dm.unipi.it), Erwin van Eijk
  2614. (wabbit@corner.iaf.nl), Gerd Knorr
  2615. (kraxel@cs.tu-berlin.de), Jean-Daniel Luiset
  2616. (luiset@cih.hcuge.ch), Jon Stevens
  2617. (root@dolphin.csudh.edu), Juan Francisco Grigera, Win32
  2618. port (j-grigera@usa.net), Juan Jose Ciarlante
  2619. (jjciarla@raiz.uncu.edu.ar), Ilya Rybkin
  2620. (rybkin@rouge.phys.lsu.edu), Marcelo Roccasalva
  2621. (mfroccas@raiz.uncu.edu.ar), Massimo Fontanelli
  2622. (MC8737@mclink.it), Sergey Ya. Korshunoff
  2623. (root@seyko.msk.su), Thomas Pundt
  2624. (pundtt@math.uni-muenster.de), Tomasz Cholewo
  2625. (tjchol01@mecca.spd.louisville.edu), Torben Fjerdingstad
  2626. (tfj@olivia.ping.dk), Vadim Sinolitis
  2627. (vvs@nsrd.npi.msu.su) and Wim Osterholt
  2628. (wim@djo.wtm.tudelft.nl).
  2629.  
  2630. [BUGS]
  2631. BUGS
  2632.  
  2633. See the file TODO in the distribution for information on
  2634. what remains to be done.
  2635.  
  2636. [main]
  2637.  lqwqk     k           k     
  2638.  x x x .   x     .     x     
  2639.  x x x k lqu wqk k lqw tqk n 
  2640.  x x x x x x x x x x x x x x 
  2641.  v   v v mqv v v v mqu v v mj
  2642.      qqqqqqCommander qj 
  2643. 
  2644.  
  2645. Version 
  2646.  
  2647. This is the main help screen for the GNU Midnight Commander . 
  2648.  
  2649. To learn more on how to use the interactive help facility
  2650. just tap enterHow to use help. You may like to go directly to the
  2651. help contentsContents.
  2652.  
  2653. The Midnight Commander is written by its authorsAUTHORS.
  2654.  
  2655. The Midnight Commander comes with ABSOLUTELY NO WARRANTYWarranty.
  2656. This is free software, and you are welcome to redistribute
  2657. it under certain conditionsLicense.[License]
  2658.  
  2659.                 GNU GENERAL PUBLIC LICENSE
  2660.                    Version 2, June 1991
  2661.  
  2662.  Copyright (C) 1989, 1991 Free Software Foundation,
  2663. Inc. 675 Mass Ave, Cambridge, MA 02139, USA.
  2664.  
  2665.  Everyone is permitted to copy and distribute verbatim
  2666. copies of this license document, but changing it is not
  2667. allowed.
  2668.  
  2669.                          Preamble
  2670.  
  2671.   The licenses for most software are designed to take away
  2672. your freedom to share and change it.  By contrast, the GNU
  2673. General Public License is intended to guarantee your
  2674. freedom to share and change free software--to make sure
  2675. the software is free for all its users.  This General
  2676. Public License applies to most of the Free Software
  2677. Foundation's software and to any other program whose
  2678. authors commit to using it.  (Some other Free Software
  2679. Foundation software is covered by the GNU Library General
  2680. Public License instead.)  You can apply it to your
  2681. programs, too.
  2682.  
  2683.   When we speak of free software, we are referring to
  2684. freedom, not price.  Our General Public Licenses are
  2685. designed to make sure that you have the freedom to
  2686. distribute copies of free software (and charge for this
  2687. service if you wish), that you receive source code or can
  2688. get it if you want it, that you can change the software or
  2689. use pieces of it in new free programs; and that you know
  2690. you can do these things.
  2691.  
  2692.   To protect your rights, we need to make restrictions
  2693. that forbid anyone to deny you these rights or to ask you
  2694. to surrender the rights.  These restrictions translate to
  2695. certain responsibilities for you if you distribute copies
  2696. of the software, or if you modify it.
  2697.  
  2698.   For example, if you distribute copies of such a program,
  2699. whether gratis or for a fee, you must give the recipients
  2700. all the rights that you have.  You must make sure that
  2701. they, too, receive or can get the source code.  And you
  2702. must show them these terms so they know their rights.
  2703.  
  2704.   We protect your rights with two steps: (1) copyright the
  2705. software, and (2) offer you this license which gives you
  2706. legal permission to copy, distribute and/or modify the
  2707. software.
  2708.  
  2709.   Also, for each author's protection and ours, we want to
  2710. make certain that everyone understands that there is no
  2711. warranty for this free software.  If the software is
  2712. modified by someone else and passed on, we want its
  2713. recipients to know that what they have is not the
  2714. original, so that any problems introduced by others will
  2715. not reflect on the original authors' reputations.
  2716.  
  2717.   Finally, any free program is threatened constantly by
  2718. software patents.  We wish to avoid the danger that
  2719. redistributors of a free program will individually obtain
  2720. patent licenses, in effect making the program proprietary.
  2721. To prevent this, we have made it clear that any patent
  2722. must be licensed for everyone's free use or not licensed
  2723. at all.
  2724.  
  2725.   The precise terms and conditions for copying,
  2726. distribution and modification follow.
  2727.  
  2728.                 GNU GENERAL PUBLIC LICENSE
  2729.             TERMS AND CONDITIONS FOR COPYING,
  2730.               DISTRIBUTION AND MODIFICATION
  2731.  
  2732.   0. This License applies to any program or other work
  2733. which contains a notice placed by the copyright holder
  2734. saying it may be distributed under the terms of this
  2735. General Public License.  The "Program", below, refers to
  2736. any such program or work, and a "work based on the
  2737. Program" means either the Program or any derivative work
  2738. under copyright law: that is to say, a work containing the
  2739. Program or a portion of it, either verbatim or with
  2740. modifications and/or translated into another language.
  2741. (Hereinafter, translation is included without limitation
  2742. in the term "modification".)  Each licensee is addressed
  2743. as "you".
  2744.  
  2745. Activities other than copying, distribution and
  2746. modification are not covered by this License; they are
  2747. outside its scope.  The act of running the Program is not
  2748. restricted, and the output from the Program is covered
  2749. only if its contents constitute a work based on the
  2750. Program (independent of having been made by running the
  2751. Program).  Whether that is true depends on what the
  2752. Program does.
  2753.  
  2754.   1. You may copy and distribute verbatim copies of the
  2755. Program's source code as you receive it, in any medium,
  2756. provided that you conspicuously and appropriately publish
  2757. on each copy an appropriate copyright notice and
  2758. disclaimer of warranty; keep intact all the notices that
  2759. refer to this License and to the absence of any warranty;
  2760. and give any other recipients of the Program a copy of
  2761. this License along with the Program.
  2762.  
  2763. You may charge a fee for the physical act of transferring
  2764. a copy, and you may at your option offer warranty
  2765. protection in exchange for a fee.
  2766.  
  2767.   2. You may modify your copy or copies of the Program or
  2768. any portion of it, thus forming a work based on the
  2769. Program, and copy and distribute such modifications or
  2770. work under the terms of Section 1 above, provided that you
  2771. also meet all of these conditions:
  2772.  
  2773.     a) You must cause the modified files to carry
  2774. prominent notices stating that you changed the files and
  2775. the date of any change.
  2776.  
  2777.     b) You must cause any work that you distribute or
  2778. publish, that in whole or in part contains or is derived
  2779. from the Program or any part thereof, to be licensed as a
  2780. whole at no charge to all third parties under the terms of
  2781. this License.
  2782.  
  2783.     c) If the modified program normally reads commands
  2784. interactively when run, you must cause it, when started
  2785. running for such interactive use in the most ordinary way,
  2786. to print or display an announcement including an
  2787. appropriate copyright notice and a notice that there is no
  2788. warranty (or else, saying that you provide a warranty) and
  2789. that users may redistribute the program under these
  2790. conditions, and telling the user how to view a copy of
  2791. this License.  (Exception: if the Program itself is
  2792. interactive but does not normally print such an
  2793. announcement, your work based on the Program is not
  2794. required to print an announcement.)
  2795.  
  2796. These requirements apply to the modified work as a whole.
  2797. If identifiable sections of that work are not derived from
  2798. the Program, and can be reasonably considered independent
  2799. and separate works in themselves, then this License, and
  2800. its terms, do not apply to those sections when you
  2801. distribute them as separate works.  But when you
  2802. distribute the same sections as part of a whole which is a
  2803. work based on the Program, the distribution of the whole
  2804. must be on the terms of this License, whose permissions
  2805. for other licensees extend to the entire whole, and thus
  2806. to each and every part regardless of who wrote it.
  2807.  
  2808. Thus, it is not the intent of this section to claim rights
  2809. or contest your rights to work written entirely by you;
  2810. rather, the intent is to exercise the right to control the
  2811. distribution of derivative or collective works based on
  2812. the Program.
  2813.  
  2814. In addition, mere aggregation of another work not based on
  2815. the Program with the Program (or with a work based on the
  2816. Program) on a volume of a storage or distribution medium
  2817. does not bring the other work under the scope of this
  2818. License.
  2819.  
  2820.   3. You may copy and distribute the Program (or a work
  2821. based on it, under Section 2) in object code or executable
  2822. form under the terms of Sections 1 and 2 above provided
  2823. that you also do one of the following:
  2824.  
  2825.     a) Accompany it with the complete corresponding
  2826. machine-readable source code, which must be distributed
  2827. under the terms of Sections 1 and 2 above on a medium
  2828. customarily used for software interchange; or,
  2829.  
  2830.     b) Accompany it with a written offer, valid for at
  2831. least three years, to give any third party, for a charge
  2832. no more than your cost of physically performing source
  2833. distribution, a complete machine-readable copy of the
  2834. corresponding source code, to be distributed under the
  2835. terms of Sections 1 and 2 above on a medium customarily
  2836. used for software interchange; or,
  2837.  
  2838.     c) Accompany it with the information you received as
  2839. to the offer to distribute corresponding source code.
  2840. (This alternative is allowed only for noncommercial
  2841. distribution and only if you received the program in
  2842. object code or executable form with such an offer, in
  2843. accord with Subsection b above.)
  2844.  
  2845. The source code for a work means the preferred form of the
  2846. work for making modifications to it.  For an executable
  2847. work, complete source code means all the source code for
  2848. all modules it contains, plus any associated interface
  2849. definition files, plus the scripts used to control
  2850. compilation and installation of the executable.  However,
  2851. as a special exception, the source code distributed need
  2852. not include anything that is normally distributed (in
  2853. either source or binary form) with the major components
  2854. (compiler, kernel, and so on) of the operating system on
  2855. which the executable runs, unless that component itself
  2856. accompanies the executable.
  2857.  
  2858. If distribution of executable or object code is made by
  2859. offering access to copy from a designated place, then
  2860. offering equivalent access to copy the source code from
  2861. the same place counts as distribution of the source code,
  2862. even though third parties are not compelled to copy the
  2863. source along with the object code.
  2864.  
  2865.   4. You may not copy, modify, sublicense, or distribute
  2866. the Program except as expressly provided under this
  2867. License.  Any attempt otherwise to copy, modify,
  2868. sublicense or distribute the Program is void, and will
  2869. automatically terminate your rights under this License.
  2870. However, parties who have received copies, or rights, from
  2871. you under this License will not have their licenses
  2872. terminated so long as such parties remain in full
  2873. compliance.
  2874.  
  2875.   5. You are not required to accept this License, since
  2876. you have not signed it.  However, nothing else grants you
  2877. permission to modify or distribute the Program or its
  2878. derivative works.  These actions are prohibited by law if
  2879. you do not accept this License.  Therefore, by modifying
  2880. or distributing the Program (or any work based on the
  2881. Program), you indicate your acceptance of this License to
  2882. do so, and all its terms and conditions for copying,
  2883. distributing or modifying the Program or works based on
  2884. it.
  2885.  
  2886.   6. Each time you redistribute the Program (or any work
  2887. based on the Program), the recipient automatically
  2888. receives a license from the original licensor to copy,
  2889. distribute or modify the Program subject to these terms
  2890. and conditions.  You may not impose any further
  2891. restrictions on the recipients' exercise of the rights
  2892. granted herein.  You are not responsible for enforcing
  2893. compliance by third parties to this License.
  2894.  
  2895.   7. If, as a consequence of a court judgment or
  2896. allegation of patent infringement or for any other reason
  2897. (not limited to patent issues), conditions are imposed on
  2898. you (whether by court order, agreement or otherwise) that
  2899. contradict the conditions of this License, they do not
  2900. excuse you from the conditions of this License.  If you
  2901. cannot distribute so as to satisfy simultaneously your
  2902. obligations under this License and any other pertinent
  2903. obligations, then as a consequence you may not distribute
  2904. the Program at all.  For example, if a patent license
  2905. would not permit royalty-free redistribution of the
  2906. Program by all those who receive copies directly or
  2907. indirectly through you, then the only way you could
  2908. satisfy both it and this License would be to refrain
  2909. entirely from distribution of the Program.
  2910.  
  2911. If any portion of this section is held invalid or
  2912. unenforceable under any particular circumstance, the
  2913. balance of the section is intended to apply and the
  2914. section as a whole is intended to apply in other
  2915. circumstances.
  2916.  
  2917. It is not the purpose of this section to induce you to
  2918. infringe any patents or other property right claims or to
  2919. contest validity of any such claims; this section has the
  2920. sole purpose of protecting the integrity of the free
  2921. software distribution system, which is implemented by
  2922. public license practices.  Many people have made generous
  2923. contributions to the wide range of software distributed
  2924. through that system in reliance on consistent application
  2925. of that system; it is up to the author/donor to decide if
  2926. he or she is willing to distribute software through any
  2927. other system and a licensee cannot impose that choice.
  2928.  
  2929. This section is intended to make thoroughly clear what is
  2930. believed to be a consequence of the rest of this License.
  2931.  
  2932.   8. If the distribution and/or use of the Program is
  2933. restricted in certain countries either by patents or by
  2934. copyrighted interfaces, the original copyright holder who
  2935. places the Program under this License may add an explicit
  2936. geographical distribution limitation excluding those
  2937. countries, so that distribution is permitted only in or
  2938. among countries not thus excluded.  In such case, this
  2939. License incorporates the limitation as if written in the
  2940. body of this License.
  2941.  
  2942.   9. The Free Software Foundation may publish revised
  2943. and/or new versions of the General Public License from
  2944. time to time.  Such new versions will be similar in spirit
  2945. to the present version, but may differ in detail to
  2946. address new problems or concerns.
  2947.  
  2948. Each version is given a distinguishing version number.  If
  2949. the Program specifies a version number of this License
  2950. which applies to it and "any later version", you have the
  2951. option of following the terms and conditions either of
  2952. that version or of any later version published by the Free
  2953. Software Foundation.  If the Program does not specify a
  2954. version number of this License, you may choose any version
  2955. ever published by the Free Software Foundation.
  2956.  
  2957.   10. If you wish to incorporate parts of the Program into
  2958. other free programs whose distribution conditions are
  2959. different, write to the author to ask for permission.  For
  2960. software which is copyrighted by the Free Software
  2961. Foundation, write to the Free Software Foundation; we
  2962. sometimes make exceptions for this.  Our decision will be
  2963. guided by the two goals of preserving the free status of
  2964. all derivatives of our free software and of promoting the
  2965. sharing and reuse of software generally.
  2966.  
  2967. [Warranty]
  2968.                        NO WARRANTY
  2969.  
  2970.   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE,
  2971. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT
  2972. PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED
  2973. IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
  2974. PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND,
  2975. EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED
  2976. TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  2977. FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE
  2978. QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.
  2979. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
  2980. ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  2981.  
  2982.   12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR
  2983. AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY
  2984. OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM
  2985. AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
  2986. INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  2987. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY
  2988. TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  2989. DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED
  2990. BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO
  2991. OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR
  2992. OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  2993. DAMAGES.
  2994.  
  2995.                END OF TERMS AND CONDITIONS
  2996.  
  2997.       How to Apply These Terms to Your New Programs
  2998.  
  2999.   If you develop a new program, and you want it to be of
  3000. the greatest possible use to the public, the best way to
  3001. achieve this is to make it free software which everyone
  3002. can redistribute and change under these terms.
  3003.  
  3004.   To do so, attach the following notices to the program.
  3005. It is safest to attach them to the start of each source
  3006. file to most effectively convey the exclusion of warranty;
  3007. and each file should have at least the "copyright" line
  3008. and a pointer to where the full notice is found.
  3009.  
  3010. <one line to give the program's name and a brief idea of 
  3011. what it does.>
  3012. Copyright (C) 19yy  <name of author>
  3013.  
  3014.     This program is free software; you can redistribute it
  3015. and/or modify it under the terms of the GNU General Public
  3016. License as published by the Free Software Foundation;
  3017. either version 2 of the License, or (at your option) any
  3018. later version.
  3019.  
  3020.     This program is distributed in the hope that it will
  3021. be useful, but WITHOUT ANY WARRANTY; without even the
  3022. implied warranty of MERCHANTABILITY or FITNESS FOR A
  3023. PARTICULAR PURPOSE.  See the GNU General Public License
  3024. for more details.
  3025.  
  3026.     You should have received a copy of the GNU General
  3027. Public License along with this program; if not, write to
  3028. the Free Software Foundation, Inc., 675 Mass Ave,
  3029. Cambridge, MA 02139, USA.
  3030.  
  3031. Also add information on how to contact you by electronic
  3032. and paper mail.
  3033.  
  3034. If the program is interactive, make it output a short
  3035. notice like this when it starts in an interactive mode:
  3036.  
  3037. Gnomovision version 69, Copyright (C) 19yy name of author
  3038. Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
  3039. type `show w'.  This is free software, and you are welcome
  3040. to redistribute it under certain conditions; type `show c'
  3041. for details.
  3042.  
  3043. The hypothetical commands `show w' and `show c' should
  3044. show the appropriate parts of the General Public License.
  3045. Of course, the commands you use may be called something
  3046. other than `show w' and `show c'; they could even be
  3047. mouse-clicks or menu items--whatever suits your program.
  3048.  
  3049. You should also get your employer (if you work as a
  3050. programmer) or your school, if any, to sign a "copyright
  3051. disclaimer" for the program, if necessary.  Here is a
  3052. sample; alter the names:
  3053.  
  3054.   Yoyodyne, Inc., hereby disclaims all copyright interest
  3055. in the program `Gnomovision' (which makes passes at
  3056. compilers) written by James Hacker.
  3057.  
  3058.   <signature of Ty Coon>, 1 April 1989
  3059.   Ty Coon, President of Vice
  3060.  
  3061. This General Public License does not permit incorporating
  3062. your program into proprietary programs.  If your program
  3063. is a subroutine library, you may consider it more useful
  3064. to permit linking proprietary applications with the
  3065. library.  If this is what you want to do, use the GNU
  3066. Library General Public License instead of this License.
  3067.  
  3068. [QueryBox]
  3069.  
  3070. In the query dialog box you can use the arrow keys or the
  3071. first letter to select an item or click with the mouse on
  3072. the button.
  3073.  
  3074. [How to use help]
  3075.  
  3076. You can use the cursor keys or mouse to navigate in the
  3077. help viewer.
  3078. Press down arrow to move to the next item or scroll down.
  3079. Press up arrow to move to the previous item or scroll up.
  3080. Press right arrow to follow the current link.
  3081. Press left arrow to go back in the history of nodes that
  3082. you have visited.
  3083.  
  3084. If you terminal doesn't support the cursor keys you can
  3085. use the space bar to scroll forward and the 'b' key scroll
  3086. back. Use the TAB key to move to the next item and press
  3087. ENTER to follow the current link. The 'l' (last) key may
  3088. be used to go back in the history of nodes that you have
  3089. visited. Press ESC to exit the help viewer.
  3090.  
  3091. The left mouse button will follow the link or scroll. The
  3092. right mouse button can be used to go back in the history
  3093. of nodes.
  3094.  
  3095. The full key list of the help viewer:
  3096.  
  3097. ^AGeneral movement keys^BGeneral Movement Keys^C are accepted.
  3098.  
  3099. tab           Move to the next item.
  3100. M-tab         Move to the previous item. 
  3101. down          Move to the next item or scroll a line down.
  3102. up            Move to the previous item or scroll a line up.
  3103. right, enter  Follow the current link.    
  3104. left, l       Go back in the history of visited nodes.
  3105. F1            Show the help for the help viewer.
  3106. n             Go to the next node.
  3107. p             Go to the previous node.    
  3108. c             Go to the Contents node.    
  3109. F10, esc      Exit the help viewer.
  3110. 
  3111. Local variables:
  3112. fill-column: 58
  3113. end:
  3114.