F_backward-char
Move point left one character.
On attempt to pass beginning or end of buffer, stop and signal error.
F_forward-char
Move point right one character.
On reaching end of buffer, stop and signal error.
F_previous-line
Move cursor vertically up one line.
If there is no character in the target line exactly over the current column,
the cursor is positioned after the character in that line which spans this
column, or at the end of the line if it is not long enough.
F_next-line
Move cursor vertically down one line.
If there is no character in the target line exactly under the current column,
the cursor is positioned after the character in that line which spans this
column, or at the end of the line if it is not long enough.
F_beginning-of-line
Move point to beginning of current line.
F_end-of-line
Move point to end of current line.
F_beginning-of-buffer
Move point to the beginning of the buffer; leave mark at previous position.
F_end-of-buffer
Move point to the end of the buffer; leave mark at previous position.
F_scroll-down
Scroll text of current window downward near full screen.
F_scroll-up
Scroll text of current window upward near full screen.
F_self-insert-command
Insert the character you type.
F_backward-delete-char
Delete the previous character.
Join lines if the character is a newline.
F_delete-char
Delete the following character.
Join lines if the character is a newline.
F_kill-line
Kill the rest of the current line; if no nonblanks there, kill thru newline.
F_kill-region
Kill between point and mark.
The text is deleted but saved in the kill ring.
The command C-y (yank) can retrieve it from there.
If the buffer is read-only, Zile will beep and refrain from deleting
the text, but put the text in the kill ring anyway.  This means that
you can use the killing commands to copy text from a read-only buffer.
If the previous command was also a kill command,
the text killed this time appends to the text killed last time
to make one entry in the kill ring.
F_yank
Reinsert the last stretch of killed text.
More precisely, reinsert the stretch of killed text most recently
killed OR yanked.  Put point at end, and set mark at beginning.
F_undo
Undo some previous changes.
Repeat this command to undo more changes.
F_copy-to-register
Copy region into the user specified register.
F_insert-register
Insert contents of the user specified register.
Puts point before and mark after the inserted text.
F_upcase-region
Convert the region to upper case.
F_downcase-region
Convert the region to lower case.
F_quoted-insert
Read next input character and insert it.
This is useful for inserting control characters.
F_set-mark-command
Set mark at where point is.
F_exchange-point-and-mark
Put the mark where point is now, and point where the mark is now.
F_mark-whole-buffer
Put point at beginning and mark at end of buffer.
F_find-file
Edit a file specified by the user.  Switch to a buffer visiting the file,
creating one if none already exists.
F_find-alternate-file
Find the file specified by the user, select its buffer, kill previous buffer.
If the current buffer now contains an empty file that you just visited
(presumably by mistake), use this command to visit the file you really want.
F_save-buffer
Save current buffer in visited file if modified. By default, makes the
previous version into a backup file if this is the first save.
F_write-file
Write current buffer into the user specified file.
Makes buffer visit that file, and marks it not modified.
F_save-some-buffers
Save some modified file-visiting buffers.  Asks user about each one.
F_save-buffers-kill-zile
Offer to save each buffer, then kill this Zile process.
F_switch-to-buffer
Select to the user specified buffer in the current window.
F_list-buffers
Display a list of names of existing buffers.
The list is displayed in a buffer named `*Buffer List*'.
Note that buffers with names starting with spaces are omitted.

The M column contains a * for buffers that are modified.
The R column contains a % for buffers that are read-only.
F_kill-buffer
Kill the current buffer or the user specified one.
F_insert-buffer
Insert after point the contents of the user specified buffer.
Puts mark after the inserted text.
F_insert-file
Insert contents of the user specified file into buffer after point.
Set mark after the inserted text.
F_overwrite-mode
In overwrite mode, printing characters typed in replace existing text
on a one-for-one basis, rather than pushing it to the right.  At the
end of a line, such characters extend the line.
C-q still inserts characters in overwrite mode; this
is supposed to make it easier to insert characters when necessary.
F_toggle-read-only
Change whether this buffer is visiting its file read-only.
F_auto-fill-mode
Toggle Auto Fill mode.
In Auto Fill mode, inserting a space at a column beyond `current-fill-column'
automatically breaks the line at a previous space.
F_font-lock-mode
Toggle Font Lock mode.
When Font Lock mode is enabled, text is fontified as you type it.
F_text-mode
Turn on the mode for editing text intended for humans to read.
F_c-mode
Turn on the mode for editing K&R and ANSI C code.
F_split-window
Split current window into two windows, one above the other.
Both windows display the same buffer now current.
F_delete-other-windows
Make the selected window fill the screen.
F_delete-window
Remove the current window from the screen.
F_enlarge-window
Make current window one line bigger.
F_other-window
Select the first different window on the screen.
All windows are arranged in a cyclic order.
This command selects the window one step away in that order.
F_toggle-minihelp-window
Toggle the mini help window.
F_zile-version
Show the zile version.
F_help-latest-version
Show informations about getting the latest version.
F_help
Show an help window.
F_help-faq
Show the Zile Frequently Asked Questions (FAQ).
F_help-tutorial
Show a tutorial window.
F_cd
Make the user specified directory become the current buffer's default
directory.
F_recenter
Center point in window and redisplay screen.
The desired position of point is always relative to the current window.
F_suspend-zile
Stop Zile and return to superior process.
F_keyboard-quit
Cancel current command.
F_universal-argument
Begin a numeric argument for the following command.
Digits or minus sign following C-u make up the numeric argument.
C-u following the digits or minus sign ends the argument.
C-u without digits or minus sign provides 4 as argument.
Repeating C-u without digits or minus sign multiplies the argument
by 4 each time.
F_search-forward
Search forward from point for the user specified text.
F_search-backward
Search backward from point for the user specified text.
F_set-variable
Set a variable value to the user specified value.
F_list-variables
List defined variables.
F_execute-extended-command
Read function name, then read its arguments and call it.
F_font-lock-refresh
Refresh the Font Lock mode internal structures.
This may be called when the fontification looks weird.
F_start-kbd-macro
Record subsequent keyboard input, defining a keyboard macro.
The commands are recorded even as they are executed.
Use C-x ) to finish recording and make the macro available.
F_end-kbd-macro
Finish defining a keyboard macro.
The definition was started by C-x (.
The macro is now available for use via C-x e.
F_call-last-kbd-macro
Call the last keyboard macro that you defined with C-x (.
A prefix argument serves as a repeat count.  Zero means repeat until error.
