Mercurial > freewnn
comparison cWnn/td/uumkey @ 0:bbc77ca4def5
initial import
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Thu, 13 Dec 2007 04:30:14 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:bbc77ca4def5 |
---|---|
1 ; | |
2 ; $Id: ./uumkey $ | |
3 ; | |
4 | |
5 ; | |
6 ; FreeWnn is a network-extensible Kana-to-Kanji conversion system. | |
7 ; This file is part of FreeWnn. | |
8 ; | |
9 ; Copyright Kyoto University Research Institute for Mathematical Sciences | |
10 ; 1987, 1988, 1989, 1990, 1991, 1992 | |
11 ; Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999 | |
12 ; Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992 | |
13 ; Copyright FreeWnn Project 1999, 2000 | |
14 ; | |
15 ; Maintainer: FreeWnn Project <freewnn@tomo.gr.jp> | |
16 ; | |
17 ; This program is free software; you can redistribute it and/or modify | |
18 ; it under the terms of the GNU General Public License as published by | |
19 ; the Free Software Foundation; either version 2 of the License, or | |
20 ; (at your option) any later version. | |
21 ; | |
22 ; This program is distributed in the hope that it will be useful, | |
23 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
24 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
25 ; GNU General Public License for more details. | |
26 ; | |
27 ; You should have received a copy of the GNU General Public License | |
28 ; along with this program; if not, write to the Free Software | |
29 ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
30 ; | |
31 | |
32 ;;;;;;;;;;;;;;;;;;;;;;;;; | |
33 ; uum key bind table : | |
34 ;;;;;;;;;;;;;;;;;;;;;;;;; | |
35 ; | |
36 ; Version 4.0 | |
37 ; | |
38 ; | |
39 | |
40 ; Commands Codes | |
41 | |
42 forward_char ^F 0x90 | |
43 backward_char ^B 0x91 | |
44 goto_top_of_line ^A 0x9A | |
45 goto_end_of_line ^E 0x9B | |
46 delete_char_at_cursor ^D 0x8B | |
47 kaijo ^K 0x99 | |
48 henkan ^W 0x9E | |
49 kana_henkan ^C | |
50 ;romaji_henkan ^R | |
51 nobi_henkan_dai ^W 0x9E | |
52 ;romaji_nobi_henkan ^R | |
53 select_jikouho_dai ^W 0x9C 0x9E | |
54 select_jikouho ^Z | |
55 nobi_henkan ^Z | |
56 tan_henkan ^Z | |
57 jikouho_dai ^N 0x92 | |
58 zenkouho_dai ^P 0x93 | |
59 | |
60 kill ^K 0x99 | |
61 yank ^Y | |
62 bunsetu_nobasi ^O 0x94 | |
63 bunsetu_chijime ^I 0x8D | |
64 jisho_utility ^^ | |
65 jisho_utility_e 0x84 0x86 0x96 | |
66 kakutei ^L 0x9F | |
67 sainyuuryoku ^U | |
68 sainyuuryoku_e 0x8C | |
69 kuten ^] | |
70 kuten_e 0x97 | |
71 jis ^_ | |
72 jis_e 0x98 | |
73 redraw_line ^R | |
74 touroku ^T | |
75 touroku_e 0x95 | |
76 touroku_mark_set 32 ^J ^M 0x9E 0x9F | |
77 touroku_return ^J ^M | |
78 touroku_jump_forward ^N 0x92 | |
79 touroku_jump_backward ^P 0x93 | |
80 quit ^G 0x9C | |
81 ;henkan_on ^@ 0x9D | |
82 henkan_on ^\ 0x9D | |
83 quote ^V | |
84 previous_history ^P | |
85 previous_history_e 0x93 | |
86 next_history ^N | |
87 next_history_e 0x92 | |
88 send_string ^M ^J ^[ | |
89 change_to_insert_mode ^C | |
90 | |
91 ; only for test | |
92 ;send_ascii_char ^Z | |
93 ;not_send_ascii_char ^\ | |
94 ;toggle_send_ascii_char ^Q | |
95 ;pop_send_ascii_char ^S | |
96 | |
97 select_select 32 ^J ^M 0x9E 0x9F | |
98 lineend_select ^E 0x9B | |
99 linestart_select ^A 0x9A | |
100 previous_select ^P 0x93 | |
101 next_select ^N 0x92 | |
102 backward_select ^B 0x91 | |
103 forward_select ^F 0x90 | |
104 | |
105 inspect ^V | |
106 del_entry ^D | |
107 use_entry ^U | |
108 com_entry ^C | |
109 hindo_set ^H | |
110 ima_bit ^I | |
111 ;reconnect_jserver 0x85 | |
112 | |
113 ; | |
114 ; Local Variables: | |
115 ; kanji-flag: t | |
116 ; kanji-fileio-code: 0 | |
117 ; End: | |
118 ; |