File: w3mhelp-funcdesc.en.pl.in

package info (click to toggle)
w3m 0.5.1-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 9,268 kB
  • ctags: 5,426
  • sloc: ansic: 55,106; perl: 4,254; sh: 3,501; makefile: 844; ruby: 776; awk: 40; sed: 16
file content (48 lines) | stat: -rw-r--r-- 1,499 bytes parent folder | download | duplicates (9)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# charset
$charset = 'US-ASCII';

# 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',
);

%menu_funcdesc = (
 'MENU:SELECT', 'Select item',
 'MENU:CLOSE', 'Close menu',
 'MENU:CANCEL', 'Back',
 'MENU:DOWN', 'Move to next item',
 'MENU:UP', 'Move to previous item',
 'MENU:LINE_UP', 'Scroll up one item',
 'MENU:LINE_DOWN', 'Scroll down one item',
 'MENU:TOP', 'Go to top item',
 'MENU:LAST', 'Go to last item',
 'MENU:NEXT', 'Go to next page',
 'MENU:PREV', 'Go to previous page',
 'MENU:SEARCH_FORE', 'Search foreward',
 'MENU:SEARCH_BACK', 'Search backward',
 'MENU:SEARCH_NEXT', 'Search next regexp',
 'MENU:SEARCH_PREV', 'Search previous regexp',
 'MENU:SUSPEND', 'Suspend',
);

1;