UP, CTRL-P                        cursor up
DOWN, CTRL-N                      cursor down
LEFT, CTRL-B                      cursor left
RIGHT, CTRL-F                     cursor right
CTRL-A                            cursor top
CTRL-E                            cursor bottom
PAGEUP, CTRL-U, Meta-v            cursor up a lots
PAGEDOWN, CTRL-D, CTRL-V          cursor down a lots
BACKSPACE, CTRL-H                 move to parent direcotry
\\                                move to root directory
~                                 move to home directory
ENTER                             run cursor file(insert directory)
q, CTRL_C                         quit
CTRL+L                            reread diskt and redraw the screen
SPACE                             mark file
[                                 mark range begin
]                                 mark range end
HOME                              mark all files without directory
END                               mark all files
*                                 glob mark
+                                 regex mark
.                                 toggle dot file mask
c                                 copy mark files to other directory
C                                 cp
m                                 move mark files to other directory
M                                 mv
d                                 move mark files to $TRASHBOX_DIR
D                                 delete mark files
e                                 edit file(vim)
v                                 view file(less)
r                                 rename
mark & r                          regex rename (for example, regex_rename '\''(.+)\.c$'\'' '\''$1.h'\'')
a                                 open attribute menu
n                                 make new file
k                                 make new direcotry
b                                 make backup of file under cursor
g                                 mgrep(grep and edit file)
G                                 vgrep(virtual directory with grep)
f,/                               incremental search
F                                 virtual directory with find
s                                 open sort and mask menu
V                                 open view menu
o,O                               copy direcotry path
w                                 exchange two directories
j                                 jump menu
h                                 switch to command line mode
x                                 excute under file
l                                 make symbolic links with mark files to a other directory


Usage of saphire
    
    When switching cmdline, run shelp

mfiler3 inner command

quit
    exit mfiler3

keycommand [meta key stat, 0 or 1] [keycode] [file kind] [command]
    
    define keybind

    file kind is

    "*" --> all file
    "makefile" --> when cursor is under makefile
    ".cpp" --> when cursor is under file which has cpp extension.
    ".execute" --> excutable file
    ".directory" --> directory
    ".link" --> link
    ".mark" --> when marking
    ".mark-cpp" --> when marking even file which has cpp extension.

    the above file name is ignore case.

keymap keycode key1 key2 ... key3
    define keycode

cursor_move n|+n|-n|/[file name]

    -d [all|adir|sdir|n] specifies directory

    n move cursor to the cursor number
    +n only n moves below
    -n only n moves above
    /[file name] move to the file

mcd dir|+|-

    -d [all|adir|sdir|n] specifiles directory

    change path of the directory

    dir move to dir
    + forward directory history
    - backward directory history

cmdline -q|-c [string] [cursor position]

    switch cmdline mode

    string is initial string of the cmdline.

    cursor position is initial cursor position. head is 0. tail is -1.

    -q quick. don't wait after runned command.
    -c continue. continue to cmdline mode after runned command.

file_num

    return file number. 

    -d [all|adir|sdir|n] specifies directory

dir_num

    return director number

cursor_num

    return cursor position

    -d [all|adir|sdir|n] specifies directory

file_name [file number]

    return file name of the file.

    -d [all|adir|sdir|n] specifies directory


file_ext [file number]

    return file extesion

    -d [all|adir|sdir|n] specifies directory


file_perm [file number]

    return file permission

    -d [all|adir|sdir|n] specifies directory

file_group [file number]

    return file group

    -d [all|adir|sdir|n] specifies directory

file_user [file number]

    return file owner

    -d [all|adir|sdir|n] specifies directory

file_index [file name]

    return file number of the file

    -d [all|adir|sdir|n] specifies directory

path

    return directory path

    -d [all|adir|sdir|n] specifies directory

external [command]
    
    when assign extern command which is like vim or cp to keybind, you shoud write command which is "external vim" or "external cp". If you write external vim, before running vim mfiler3 initialize terminal.

isearch
    
    start incremental search

mchoise message item1 item2 ...

    make user choise the items

activate [directory number]

    activate diretory which has the number

defmenu [menu name] [title1] [keycode1] [command1] [title2] [keycode2] [command2] ...

    define menu

addmenu [menu name] title keycode command

    add item to the menu

menu [menu name]

    open menu

reread
    -d [all|adir|sdir|n] specifies directory

    reread disk

markfiles

    write mark files

    -d [all|adir|sdir|n] specifies directory

    -fullpath fullpath

    -q quote the writing files

allfiles

    write all files

    -d [all|adir|sdir|n] specifies directory

    -fullpath fullpath
    -q quote the writing files

mark
    
    mark [file name] [0 or 1] mark the file or dismark the file
    mark -t [file name] toggle mark the file
    mark -n [file number] [0 or 1] mark the file or dismark the file
    mark -n [file number] -t toggle mark the file

    -d [all|adir|sdir|n] specifies directory
    -f withou directories
    -a all files

marking

    when mark file exists, return 1.

    -d [all|adir|sdir|n] specifies directory

mclear_immediately

    clear screen immediately

vd

    make virtual directory from STDIN

mcp [target directory]
    -p preserve time stamp

    copy mark files

mmv [target directory]
    -p preserve time stamp

    move mark files

    -f force overwrite

mrm 
    remove mark files

mtrashbox
    -p preserve time stamp

    move mark files to $TRASHBOX_DIR

mln [target directory]
    
    make mark file's absolute link

mrename [file name] [renamed file name]

    rename file name

    -r reread disk
    -c move cursor to renamed file

mask 
    
    mask -dotdir 0 or 1 visible dot file or hide dot file
    mask [regex] regex mask

    -d [all|adir|sdir|n] specifies directory

new_dir path
    make directory

del_dir
    remove directory

    -d [all|adir|sdir|n] specifies directory

mbackup [file name] [backup file name]

    -p preserve time stamp

    backup the file

row 
    return cursor row position

row_max

    return cursor row max

line

    retur curor line position

line_max

    return cursor line max

adir
    return active directory number

sdir
    return disactive directory number

keycode
    $key_up
    $key_right
    $key_down
    $key_left
    $key_insert
    $key_delete
    $key_home
    $key_end
    $key_pageup
    $key_pagedown 
    $key_meta_left 
    $key_meta_right 
    $key_meta_up 
    $key_meta_down 
    $key_enter 
    $key_backspace 
    $key_f1, key_f12
    $key_a,..., key_z
    $key_A, ..., key_Z
    $key_space 
    $key_ctrl_space 
    $key_ctrl_a, key_ctrl_z 
    $key_escape 
    $key_tab 
    $key_0,...,key_9
    $key_exclam 
    $key_dquote 
    $key_sharp 
    $key_dollar 
    $key_percent 
    $key_and 
    $key_squote 
    $key_lparen 
    $key_rparen 
    $key_tilda 
    $key_equal 
    $key_minus 
    $key_cup 
    $key_vbar 
    $key_backslash 
    $key_atmark 
    $key_bapostrophe 
    $key_lcurly 
    $key_lbrack 
    $key_plus 
    $key_semicolon 
    $key_star 
    $key_colon 
    $key_rcurly 
    $key_rbrack 
    $key_lss 
    $key_comma 
    $key_gtr 
    $key_dot 
    $key_slash 
    $key_qmark 
    $key_underbar 

