Intial commit
[profile/ivi/w3m.git] / scripts / w3mhelp-funcname.pl.in
1
2 %buf_funcname = (
3  'BUF:PREV', 'buffer_prev',
4  'BUF:NEXT', 'buffer_next',
5  'BUF:DELETE', 'buffer_delete',
6  'BUF:GO', 'buffer_go',
7 );
8
9 %lineedit_funcname = (
10  'LINEEDIT:FORWARD', 'lineedit_forward',
11  'LINEEDIT:BACK', 'lineedit_back',
12  'LINEEDIT:BS', 'lineedit_backspace',
13  'LINEEDIT:DEL', 'lineedit_delete',
14  'LINEEDIT:KILL_AFTER', 'lineedit_kill_after',
15  'LINEEDIT:KILL_BEFORE', 'lineedit_kill_before',
16  'LINEEDIT:TOP', 'lineedit_top',
17  'LINEEDIT:BOTTOM', 'lineedit_bottom',
18  'LINEEDIT:PREV', 'lineedit_prev',
19  'LINEEDIT:NEXT', 'lineedit_next',
20  'LINEEDIT:EDITOR', 'lineedit_editor',
21  'LINEEDIT:COMPLETE', 'lineedit_complete',
22  'LINEEDIT:ACCEPT', 'lineedit_accept',
23 );
24
25 %menu_funcname = (
26  'MENU:SELECT', 'menu_select',
27  'MENU:CLOSE', 'menu_close',
28  'MENU:CANCEL', 'menu_cancel',
29  'MENU:DOWN', 'menu_down',
30  'MENU:UP', 'menu_up',
31  'MENU:LINE_UP', 'menu_line_up',
32  'MENU:LINE_DOWN', 'menu_line_down',
33  'MENU:TOP', 'menu_top',
34  'MENU:LAST', 'menu_last',
35  'MENU:NEXT', 'menu_next',
36  'MENU:PREV', 'menu_prev',
37  'MENU:SEARCH_FORE', 'menu_search_fore',
38  'MENU:SEARCH_BACK', 'menu_search_back',
39  'MENU:SEARCH_NEXT', 'menu_search_next',
40  'MENU:SEARCH_PREV', 'menu_search_prev',
41  'MENU:SUSPEND', 'menu_suspend',
42 );
43
44 %buf_keyfunc = (
45  'k', 'BUF:PREV',
46  'C-p', 'BUF:PREV',
47  'j', 'BUF:NEXT',
48  'C-n', 'BUF:NEXT',
49  'D', 'BUF:DELETE',
50  'RET', 'BUF:GO'
51 );
52
53 %lineedit_keyfunc = (
54  'C-f', 'LINEEDIT:FORWARD',
55  'C-b', 'LINEEDIT:BACK',
56  'C-h', 'LINEEDIT:BS',
57  'C-d', 'LINEEDIT:DEL',
58  'C-k', 'LINEEDIT:KILL_AFTER',
59  'C-u', 'LINEEDIT:KILL_BEFORE',
60  'C-a', 'LINEEDIT:TOP',
61  'C-e', 'LINEEDIT:BOTTOM',
62  'C-p', 'LINEEDIT:PREV',
63  'C-n', 'LINEEDIT:NEXT',
64  'C-o', 'LINEEDIT:EDITOR',
65  'TAB', 'LINEEDIT:COMPLETE',
66  'SPC', 'LINEEDIT:COMPLETE',
67  'RET', 'LINEEDIT:ACCEPT'
68 );
69
70 %menu_keyfunc = (
71  'RET', 'MENU:SELECT',
72  'SPC', 'MENU:SELECT',
73  'RIGHT', 'MENU:SELECT',
74  '^[[28~', 'MENU:CLOSE',
75  '^[[2~', 'MENU:CLOSE',
76  'C-c', 'MENU:CLOSE',
77  'C-h', 'MENU:CANCEL',
78  'DEL', 'MENU:CANCEL',
79  'LEFT', 'MENU:CANCEL',
80  'C-n', 'MENU:DOWN',
81  'j', 'MENU:DOWN',
82  'DOWN', 'MENU:DOWN',
83  'C-p', 'MENU:UP',
84  'k', 'MENU:UP',
85  'UP', 'MENU:UP',
86  'K', 'MENU:LINE_UP',
87  'J', 'MENU:LINE_DOWN',
88  'C-a', 'MENU:TOP',
89  'C-e', 'MENU:LAST',
90  'C-f', 'MENU:NEXT',
91  'C-v', 'MENU:NEXT',
92  '^[[6~', 'MENU:NEXT',
93  'C-b', 'MENU:PREV',
94  'ESC-v', 'MENU:PREV',
95  '^[[5~', 'MENU:PREV',
96  'C-s', 'MENU:SEARCH_FORE',
97  '/', 'MENU:SEARCH_FORE',
98  'C-r', 'MENU:SEARCH_BACK',
99  '?', 'MENU:SEARCH_BACK',
100  'n', 'MENU:SEARCH_NEXT',
101  'N', 'MENU:SEARCH_PREV',
102  'C-z', 'MENU:SUSPEND',
103 );
104
105 1;