commands/fed/group/fed.cif
author Tom Sutcliffe <thomas.sutcliffe@accenture.com>
Sun, 17 Oct 2010 18:43:12 +0100
changeset 86 849a0b46c767
parent 0 7f656887cf89
permissions -rw-r--r--
Fixed lots of issues with installing a low-caps version of fshell from SIS file. * Fixed issue in CCommandFactory whereby some APIs like GetCommandInfoL could trigger allocations on the wrong heap or signals to the wrong thread. The symptoms were often seen as a crash in the which_00 thread when running ciftest. * Lots of build fixes for when FSHELL_PROTECTED_UIDS isn't defined and when all capabilities aren't available. * Added new platform.mmh macro FSHELL_OPEN_SIGNED. * Open signing of fshell SIS files is now supported for production S60 handsets. Build fshell with the FSHELL_OPEN_SIGNED macro defined (and without defining FSHELL_CAP_ALL or FSHELL_PROTECTED_UIDS) in your platform.mmh and submit \epoc32\fshell\fshell.unsigned.sis to https://www.symbiansigned.com/app/page/public/openSignedOnline.do . The following commands are not available when using Open Signing due to Platform Security restrictions: fdb; kerninfo; chunkinfo; svrinfo; objinfo; sudo; fsck; localdrive; ramdefrag; readmem; reboot; setcritical; setpriority. Others such as chkdeps, e32header, ps, and fshell itself will run but in a restricted capacity (for example, fshell will no longer allow you to modify files in the \sys\bin directory). * Removed commands objinfo, svrinfo, chunkinfo, readmem, fsck completely when memory access isn't present - previously they would still appear in the help but would give an error if you tried to run them.

# fed.cif
# 
# Copyright (c) 2010 Accenture. All rights reserved.
# This component and the accompanying materials are made available
# under the terms of the "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
# 
# Initial Contributors:
# Accenture - Initial contribution
#

==name fed

==argument filename file optional multiple

File or files to open. If not specified, opens an untitled document.

==option int w tab-width TAB_WIDTH

Specify the tab width to use (defaults to 4 characters).

==short-description

Console text editor.

==long-description

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.

The supported commands are given below. The control key is represented as a caret '^', so ^G means Control-G.

=head1 Commands

    ^L, F1  Get help
    ^N      New document
    ^O      Open document
    ^S      Save document
    ^A      Save as

    ^U      Page up (alternative to PgUp key)
    ^D      Page down (alternative to PgDn key)
    ^T      Go to top of document
    ^B      Go to bottom of document

    ^F      Find text
    ^K      Delete current line
    ^G      Go to line
    ^R, F5  Redraw the screen
    ^X      Cut (see below)
    ^C      Copy (see below)
    ^V      Paste

    ^P, F2  Switch to Previous view
    ^], F3  Switch to Next view
    ^W, Esc Close current doc
    ^Q      Quit and close all docs

=head1 Clipboard support

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:

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.

==copyright

Copyright (c) 2006-2010 Accenture. All rights reserved.