aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/w3mhelp-funcdesc.en.pl.in
blob: 51d924c040a16cbb6b9f5634630935ae5c2b8230 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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;