* proto.h (tabMn): nulcmd ifndef USE_MENU * scripts/w3mhelp-funcdesc.en.pl.in: add LINEEDIT:EDITOR * scripts/w3mhelp-funcdesc.ja.pl.in: add LINEEDIT:EDITOR Tab operation * scripts/w3mhelp-funcname.pl.in: add LINEEDIT:EDITOR C-o * scripts/w3mhelp.cgi.in: add tabA in Hyperlink operation add tabURL, tabrURL in File/Stream operation add Tab operation add lineedit_editor in Line edit mode From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
28 lines
873 B
Perl
28 lines
873 B
Perl
|
|
# Buffer selection mode
|
|
|
|
%buf_funcdesc = (
|
|
'BUF:PREV', 'Select previous buffer',
|
|
'BUF:NEXT', 'Select next buffer',
|
|
'BUF:DELETE', 'Delete current buffer',
|
|
'BUF:GO', 'Go to the selected buffer',
|
|
);
|
|
|
|
%lineedit_funcdesc = (
|
|
'LINEEDIT:FORWARD', 'Move cursor forward',
|
|
'LINEEDIT:BACK', 'Move cursor backward',
|
|
'LINEEDIT:BS', 'Delete previous character',
|
|
'LINEEDIT:DEL', 'Delete current character',
|
|
'LINEEDIT:KILL_AFTER', 'Kill everything after cursor',
|
|
'LINEEDIT:KILL_BEFORE', 'Kill everything before cursor',
|
|
'LINEEDIT:TOP', 'Move to the top of line',
|
|
'LINEEDIT:BOTTOM', 'Move to the bottom of line',
|
|
'LINEEDIT:PREV', 'Fetch the previous string from the history list',
|
|
'LINEEDIT:NEXT', 'Fetch the next string from the history list',
|
|
'LINEEDIT:EDITOR', 'Edit with external editor',
|
|
'LINEEDIT:COMPLETE', 'Complete filename',
|
|
'LINEEDIT:ACCEPT', 'Accept',
|
|
);
|
|
|
|
1;
|