* 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>
52 lines
1.2 KiB
Perl
52 lines
1.2 KiB
Perl
|
|
%buf_funcname = (
|
|
'BUF:PREV', 'buffer_prev',
|
|
'BUF:NEXT', 'buffer_next',
|
|
'BUF:DELETE', 'buffer_delete',
|
|
'BUF:GO', 'buffer_go',
|
|
);
|
|
|
|
%lineedit_funcname = (
|
|
'LINEEDIT:FORWARD', 'lineedit_forward',
|
|
'LINEEDIT:BACK', 'lineedit_back',
|
|
'LINEEDIT:BS', 'lineedit_backspace',
|
|
'LINEEDIT:DEL', 'lineedit_delete',
|
|
'LINEEDIT:KILL_AFTER', 'lineedit_kill_after',
|
|
'LINEEDIT:KILL_BEFORE', 'lineedit_kill_before',
|
|
'LINEEDIT:TOP', 'lineedit_top',
|
|
'LINEEDIT:BOTTOM', 'lineedit_bottom',
|
|
'LINEEDIT:PREV', 'lineedit_prev',
|
|
'LINEEDIT:NEXT', 'lineedit_next',
|
|
'LINEEDIT:EDITOR', 'lineedit_editor',
|
|
'LINEEDIT:COMPLETE', 'lineedit_complete',
|
|
'LINEEDIT:ACCEPT', 'lineedit_accept',
|
|
);
|
|
|
|
%buf_keyfunc = (
|
|
'k', 'BUF:PREV',
|
|
'C-p', 'BUF:PREV',
|
|
'j', 'BUF:NEXT',
|
|
'C-n', 'BUF:NEXT',
|
|
'D', 'BUF:DELETE',
|
|
'RET', 'BUF:GO'
|
|
);
|
|
|
|
%lineedit_keyfunc = (
|
|
'C-f', 'LINEEDIT:FORWARD',
|
|
'C-b', 'LINEEDIT:BACK',
|
|
'C-h', 'LINEEDIT:BS',
|
|
'C-d', 'LINEEDIT:DEL',
|
|
'C-k', 'LINEEDIT:KILL_AFTER',
|
|
'C-u', 'LINEEDIT:KILL_BEFORE',
|
|
'C-a', 'LINEEDIT:TOP',
|
|
'C-e', 'LINEEDIT:BOTTOM',
|
|
'C-p', 'LINEEDIT:PREV',
|
|
'C-n', 'LINEEDIT:NEXT',
|
|
'C-o', 'LINEEDIT:EDITOR',
|
|
'TAB', 'LINEEDIT:COMPLETE',
|
|
'SPC', 'LINEEDIT:COMPLETE',
|
|
'RET', 'LINEEDIT:ACCEPT'
|
|
);
|
|
|
|
1;
|