49 lines
1.5 KiB
Perl
49 lines
1.5 KiB
Perl
# charset
|
|
$charset = 'US-ASCII';
|
|
|
|
# Buffer selection mode
|
|
|
|
%buf_funcdesc = (
|
|
'BUF:PREV', 'Previous item',
|
|
'BUF:NEXT', 'Next item',
|
|
'BUF:DELETE', 'Delete item',
|
|
'BUF:GO', 'Select item',
|
|
);
|
|
|
|
%lineedit_funcdesc = (
|
|
'LINEEDIT:FORWARD', 'Cursor forward',
|
|
'LINEEDIT:BACK', 'Cursor backward',
|
|
'LINEEDIT:BS', 'Delete previous character',
|
|
'LINEEDIT:DEL', 'Delete character',
|
|
'LINEEDIT:KILL_AFTER', 'Delete everything after cursor',
|
|
'LINEEDIT:KILL_BEFORE', 'Delete everything before cursor',
|
|
'LINEEDIT:TOP', 'Cursor to the beginning of the line',
|
|
'LINEEDIT:BOTTOM', 'Cursor to the end of the 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', 'Try to complete filename',
|
|
'LINEEDIT:ACCEPT', 'Accept input line',
|
|
);
|
|
|
|
%menu_funcdesc = (
|
|
'MENU:SELECT', 'Select item',
|
|
'MENU:CLOSE', 'Close menu',
|
|
'MENU:CANCEL', 'One selection step backward',
|
|
'MENU:DOWN', 'Move to the next item',
|
|
'MENU:UP', 'Move to the previous item',
|
|
'MENU:LINE_UP', 'Scroll up one item',
|
|
'MENU:LINE_DOWN', 'Scroll down one item',
|
|
'MENU:TOP', 'Move to the first item',
|
|
'MENU:LAST', 'Move to the final item',
|
|
'MENU:NEXT', 'Go to the next page',
|
|
'MENU:PREV', 'Go to the previous page',
|
|
'MENU:SEARCH_FORE', 'Search forward',
|
|
'MENU:SEARCH_BACK', 'Search backward',
|
|
'MENU:SEARCH_NEXT', 'Search for the next match',
|
|
'MENU:SEARCH_PREV', 'Search for the previous match',
|
|
'MENU:SUSPEND', 'Suspend',
|
|
);
|
|
|
|
1;
|