commands/fed/group/fed.cif
changeset 0 7f656887cf89
equal deleted inserted replaced
-1:000000000000 0:7f656887cf89
       
     1 # fed.cif
       
     2 # 
       
     3 # Copyright (c) 2010 Accenture. All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of the "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 # 
       
     9 # Initial Contributors:
       
    10 # Accenture - Initial contribution
       
    11 #
       
    12 
       
    13 ==name fed
       
    14 
       
    15 ==argument filename file optional multiple
       
    16 
       
    17 File or files to open. If not specified, opens an untitled document.
       
    18 
       
    19 ==option int w tab-width TAB_WIDTH
       
    20 
       
    21 Specify the tab width to use (defaults to 4 characters).
       
    22 
       
    23 ==short-description
       
    24 
       
    25 Console text editor.
       
    26 
       
    27 ==long-description
       
    28 
       
    29 Fed is a basic console text editor. Its interface is similar to pico/nano. It can handle ASCII, UTF-8 and UTF-16 format files, different line endings, very large files, copy and paste, and opening multiple files at once.
       
    30 
       
    31 The supported commands are given below. The control key is represented as a caret '^', so ^G means Control-G.
       
    32 
       
    33 =head1 Commands
       
    34 
       
    35     ^L, F1  Get help
       
    36     ^N      New document
       
    37     ^O      Open document
       
    38     ^S      Save document
       
    39     ^A      Save as
       
    40 
       
    41     ^U      Page up (alternative to PgUp key)
       
    42     ^D      Page down (alternative to PgDn key)
       
    43     ^T      Go to top of document
       
    44     ^B      Go to bottom of document
       
    45 
       
    46     ^F      Find text
       
    47     ^K      Delete current line
       
    48     ^G      Go to line
       
    49     ^R, F5  Redraw the screen
       
    50     ^X      Cut (see below)
       
    51     ^C      Copy (see below)
       
    52     ^V      Paste
       
    53 
       
    54     ^P, F2  Switch to Previous view
       
    55     ^], F3  Switch to Next view
       
    56     ^W, Esc Close current doc
       
    57     ^Q      Quit and close all docs
       
    58 
       
    59 =head1 Clipboard support
       
    60 
       
    61 The standard Symbian clipboard is supported. You can use ^V to paste into the frontmost document. Cut and copy are two-stage operations, because of the limitations of the console:
       
    62 
       
    63 To begin a cut/copy operation, press ^X or ^C. Then move the cursor to the other end of the selection you want to make, and press ^X/^C again to confirm the cut/copy operation.
       
    64 
       
    65 ==copyright
       
    66 
       
    67 Copyright (c) 2006-2010 Accenture. All rights reserved.
       
    68