annotate runtime/doc/digraph.txt @ 5146:6ec6b7ff2d43 v7.4a

Vim 7.4a BETA release.
author Bram Moolenaar <bram@vim.org>
date Sat, 06 Jul 2013 15:44:11 +0200
parents b6471224d2af
children 09c88160095d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5146
6ec6b7ff2d43 Vim 7.4a BETA release.
Bram Moolenaar <bram@vim.org>
parents: 2698
diff changeset
1 *digraph.txt* For Vim version 7.4a. Last change: 2011 Jan 15
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 VIM REFERENCE MANUAL by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
1702
5232b9862f23 updated for version 7.2-000
vimboss
parents: 1698
diff changeset
7 Digraphs *digraph* *digraphs* *Digraphs*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 Digraphs are used to enter characters that normally cannot be entered by
1702
5232b9862f23 updated for version 7.2-000
vimboss
parents: 1698
diff changeset
10 an ordinary keyboard. These are mostly printable non-ASCII characters. The
5232b9862f23 updated for version 7.2-000
vimboss
parents: 1698
diff changeset
11 digraphs are easier to remember than the decimal number that can be entered
5232b9862f23 updated for version 7.2-000
vimboss
parents: 1698
diff changeset
12 with CTRL-V (see |i_CTRL-V|).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 There is a brief introduction on digraphs in the user manual: |24.9|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 An alternative is using the 'keymap' option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 1. Defining digraphs |digraphs-define|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 2. Using digraphs |digraphs-use|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 3. Default digraphs |digraphs-default|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 {Vi does not have any of these commands}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 1. Defining digraphs *digraphs-define*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 *:dig* *:digraphs*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 :dig[raphs] show currently defined digraphs.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 *E104* *E39*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 :dig[raphs] {char1}{char2} {number} ...
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 Add digraph {char1}{char2} to the list. {number} is
26
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
31 the decimal representation of the character. Normally
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
32 it is the Unicode character, see |digraph-encoding|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 :digr e: 235 a: 228
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 < Avoid defining a digraph with '_' (underscore) as the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 first character, it has a special meaning in the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 future.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 Vim is normally compiled with the |+digraphs| feature. If the feature is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 disabled, the ":digraph" command will display an error message.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 Example of the output of ":digraphs": >
2698
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
43 TH Þ 222 ss ß 223 a! à 224 a' á 225 a> â 226 a? ã 227 a: ä 228
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 The first two characters in each column are the characters you have to type to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 enter the digraph.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 In the middle of each column is the resulting character. This may be mangled
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49 if you look at it on a system that does not support digraphs or if you print
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 this file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51
26
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
52 *digraph-encoding*
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
53 The decimal number normally is the Unicode number of the character. Note that
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
54 the meaning doesn't change when 'encoding' changes. The character will be
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
55 converted from Unicode to 'encoding' when needed. This does require the
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1668
diff changeset
56 conversion to be available, it might fail. For the NUL character you will see
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1668
diff changeset
57 "10". That's because NUL characters are internally represented with a NL
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1668
diff changeset
58 character. When you write the file it will become a NUL character.
26
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
59
2570
71b56b4e7785 Make the references to features in the help more consistent. (Sylvain Hitier)
Bram Moolenaar <bram@vim.org>
parents: 2561
diff changeset
60 When Vim was compiled without the |+multi_byte| feature, you need to specify
71b56b4e7785 Make the references to features in the help more consistent. (Sylvain Hitier)
Bram Moolenaar <bram@vim.org>
parents: 2561
diff changeset
61 the character in the encoding given with 'encoding'. You might want to use
26
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
62 something like this: >
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
63
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
64 if has("multi_byte")
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
65 digraph oe 339
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
66 elseif &encoding == "iso-8859-15"
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
67 digraph oe 189
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
68 endif
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
69
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
70 This defines the "oe" digraph for a character that is number 339 in Unicode
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
71 and 189 in latin9 (iso-8859-15).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 2. Using digraphs *digraphs-use*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 There are two methods to enter digraphs: *i_digraph*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 CTRL-K {char1} {char2} or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 {char1} <BS> {char2}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 The first is always available; the second only when the 'digraph' option is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 set.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 If a digraph with {char1}{char2} does not exist, Vim searches for a digraph
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 {char2}{char1}. This helps when you don't remember which character comes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 first.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 Note that when you enter CTRL-K {char1}, where {char1} is a special key, Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 enters the code for that special key. This is not a digraph.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 Once you have entered the digraph, Vim treats the character like a normal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 character that occupies only one character in the file and on the screen.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 'B' <BS> 'B' will enter the broken '|' character (166)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 'a' <BS> '>' will enter an 'a' with a circumflex (226)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 CTRL-K '-' '-' will enter a soft hyphen (173)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 The current digraphs are listed with the ":digraphs" command. Some of the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 default ones are listed below |digraph-table|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 For CTRL-K, there is one general digraph: CTRL-K <Space> {char} will enter
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 {char} with the highest bit set. You can use this to enter meta-characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 The <Esc> character cannot be part of a digraph. When hitting <Esc>, Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 stops digraph entry and ends Insert mode or Command-line mode, just like
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 hitting an <Esc> out of digraph context. Use CTRL-V 155 to enter meta-ESC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 (CSI).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 If you accidentally typed an 'a' that should be an 'e', you will type 'a' <BS>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 'e'. But that is a digraph, so you will not get what you want. To correct
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109 this, you will have to type <BS> e again. To avoid this don't set the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110 'digraph' option and use CTRL-K to enter digraphs.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 874
diff changeset
112 You may have problems using Vim with characters which have a value above 128.
e63691e7c504 updated for version 7.1a
vimboss
parents: 874
diff changeset
113 For example: You insert ue (u-umlaut) and the editor echoes \334 in Insert
e63691e7c504 updated for version 7.1a
vimboss
parents: 874
diff changeset
114 mode. After leaving the Insert mode everything is fine. Note that fmt
e63691e7c504 updated for version 7.1a
vimboss
parents: 874
diff changeset
115 removes all characters with a value above 128 from the text being formatted.
e63691e7c504 updated for version 7.1a
vimboss
parents: 874
diff changeset
116 On some Unix systems this means you have to define the environment-variable
e63691e7c504 updated for version 7.1a
vimboss
parents: 874
diff changeset
117 LC_CTYPE. If you are using csh, then put the following line in your .cshrc: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 setenv LC_CTYPE iso_8859_1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 3. Default digraphs *digraphs-default*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 Vim comes with a set of default digraphs. Check the output of ":digraphs" to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 see them.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 On most systems Vim uses the same digraphs. They work for the Unicode and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 ISO-8859-1 character sets. These default digraphs are taken from the RFC1345
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 mnemonics. To make it easy to remember the mnemonic, the second character has
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129 a standard meaning:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 char name char meaning ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 Exclamation mark ! Grave
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 Apostrophe ' Acute accent
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 Greater-Than sign > Circumflex accent
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1242
diff changeset
135 Question mark ? Tilde
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 Hyphen-Minus - Macron
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137 Left parenthesis ( Breve
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1242
diff changeset
138 Full stop . Dot above
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 Colon : Diaeresis
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140 Comma , Cedilla
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 Underline _ Underline
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
142 Solidus / Stroke
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143 Quotation mark " Double acute accent
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144 Semicolon ; Ogonek
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 Less-Than sign < Caron
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
146 Zero 0 Ring above
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 Two 2 Hook
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
148 Nine 9 Horn
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 Equals = Cyrillic
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
151 Asterisk * Greek
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
152 Percent sign % Greek/Cyrillic special
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153 Plus + smalls: Arabic, capitals: Hebrew
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 Three 3 some Latin/Greek/Cyrillic letters
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 Four 4 Bopomofo
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 Five 5 Hiragana
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 Six 6 Katakana
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158
2698
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
159 Example: a: is ä and o: is ö
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 These are the RFC1345 digraphs for the one-byte characters. See the output of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 ":digraphs" for the others. The characters above 255 are only available when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 Vim was compiled with the |+multi_byte| feature.
26
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
164
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 26
diff changeset
165 EURO
7e70fc748752 updated for version 7.0056
vimboss
parents: 26
diff changeset
166
26
404aac550f35 updated for version 7.0017
vimboss
parents: 7
diff changeset
167 Exception: RFC1345 doesn't specify the euro sign. In Vim the digraph =e was
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 26
diff changeset
168 added for this. Note the difference between latin1, where the digraph Cu is
7e70fc748752 updated for version 7.0056
vimboss
parents: 26
diff changeset
169 used for the currency sign, and latin9 (iso-8859-15), where the digraph =e is
523
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 180
diff changeset
170 used for the euro sign, while both of them are the character 164, 0xa4. For
a7ae7e043e43 updated for version 7.0146
vimboss
parents: 180
diff changeset
171 compatibility with zsh Eu can also be used for the euro sign.
180
7e70fc748752 updated for version 7.0056
vimboss
parents: 26
diff changeset
172
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 *digraph-table*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 char digraph hex dec official name ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 ^@ NU 0x00 0 NULL (NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 ^A SH 0x01 1 START OF HEADING (SOH)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 ^B SX 0x02 2 START OF TEXT (STX)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 ^C EX 0x03 3 END OF TEXT (ETX)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 ^D ET 0x04 4 END OF TRANSMISSION (EOT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 ^E EQ 0x05 5 ENQUIRY (ENQ)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 ^F AK 0x06 6 ACKNOWLEDGE (ACK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182 ^G BL 0x07 7 BELL (BEL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
183 ^H BS 0x08 8 BACKSPACE (BS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184 ^I HT 0x09 9 CHARACTER TABULATION (HT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 ^@ LF 0x0a 10 LINE FEED (LF)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 ^K VT 0x0b 11 LINE TABULATION (VT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 ^L FF 0x0c 12 FORM FEED (FF)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 ^M CR 0x0d 13 CARRIAGE RETURN (CR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 ^N SO 0x0e 14 SHIFT OUT (SO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190 ^O SI 0x0f 15 SHIFT IN (SI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191 ^P DL 0x10 16 DATALINK ESCAPE (DLE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 ^Q D1 0x11 17 DEVICE CONTROL ONE (DC1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 ^R D2 0x12 18 DEVICE CONTROL TWO (DC2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 ^S D3 0x13 19 DEVICE CONTROL THREE (DC3)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 ^T D4 0x14 20 DEVICE CONTROL FOUR (DC4)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 ^U NK 0x15 21 NEGATIVE ACKNOWLEDGE (NAK)
843
9f279ebda751 updated for version 7.0f01
vimboss
parents: 842
diff changeset
197 ^V SY 0x16 22 SYNCHRONOUS IDLE (SYN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 ^W EB 0x17 23 END OF TRANSMISSION BLOCK (ETB)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 ^X CN 0x18 24 CANCEL (CAN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 ^Y EM 0x19 25 END OF MEDIUM (EM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 ^Z SB 0x1a 26 SUBSTITUTE (SUB)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 ^[ EC 0x1b 27 ESCAPE (ESC)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 ^\ FS 0x1c 28 FILE SEPARATOR (IS4)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 ^] GS 0x1d 29 GROUP SEPARATOR (IS3)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 ^^ RS 0x1e 30 RECORD SEPARATOR (IS2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 ^_ US 0x1f 31 UNIT SEPARATOR (IS1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 SP 0x20 32 SPACE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 # Nb 0x23 35 NUMBER SIGN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 $ DO 0x24 36 DOLLAR SIGN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 @ At 0x40 64 COMMERCIAL AT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 [ <( 0x5b 91 LEFT SQUARE BRACKET
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 \ // 0x5c 92 REVERSE SOLIDUS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 ] )> 0x5d 93 RIGHT SQUARE BRACKET
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 ^ '> 0x5e 94 CIRCUMFLEX ACCENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 ` '! 0x60 96 GRAVE ACCENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 { (! 0x7b 123 LEFT CURLY BRACKET
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 | !! 0x7c 124 VERTICAL LINE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 } !) 0x7d 125 RIGHT CURLY BRACKET
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 ~ '? 0x7e 126 TILDE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 ^? DT 0x7f 127 DELETE (DEL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 ~@ PA 0x80 128 PADDING CHARACTER (PAD)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 ~A HO 0x81 129 HIGH OCTET PRESET (HOP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 ~B BH 0x82 130 BREAK PERMITTED HERE (BPH)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 ~C NH 0x83 131 NO BREAK HERE (NBH)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 ~D IN 0x84 132 INDEX (IND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 ~E NL 0x85 133 NEXT LINE (NEL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 ~F SA 0x86 134 START OF SELECTED AREA (SSA)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 ~G ES 0x87 135 END OF SELECTED AREA (ESA)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 ~H HS 0x88 136 CHARACTER TABULATION SET (HTS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 ~I HJ 0x89 137 CHARACTER TABULATION WITH JUSTIFICATION (HTJ)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 ~J VS 0x8a 138 LINE TABULATION SET (VTS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 ~K PD 0x8b 139 PARTIAL LINE FORWARD (PLD)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 ~L PU 0x8c 140 PARTIAL LINE BACKWARD (PLU)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234 ~M RI 0x8d 141 REVERSE LINE FEED (RI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
235 ~N S2 0x8e 142 SINGLE-SHIFT TWO (SS2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
236 ~O S3 0x8f 143 SINGLE-SHIFT THREE (SS3)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237 ~P DC 0x90 144 DEVICE CONTROL STRING (DCS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238 ~Q P1 0x91 145 PRIVATE USE ONE (PU1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239 ~R P2 0x92 146 PRIVATE USE TWO (PU2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
240 ~S TS 0x93 147 SET TRANSMIT STATE (STS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241 ~T CC 0x94 148 CANCEL CHARACTER (CCH)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242 ~U MW 0x95 149 MESSAGE WAITING (MW)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243 ~V SG 0x96 150 START OF GUARDED AREA (SPA)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
244 ~W EG 0x97 151 END OF GUARDED AREA (EPA)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245 ~X SS 0x98 152 START OF STRING (SOS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246 ~Y GC 0x99 153 SINGLE GRAPHIC CHARACTER INTRODUCER (SGCI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
247 ~Z SC 0x9a 154 SINGLE CHARACTER INTRODUCER (SCI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248 ~[ CI 0x9b 155 CONTROL SEQUENCE INTRODUCER (CSI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 ~\ ST 0x9c 156 STRING TERMINATOR (ST)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 ~] OC 0x9d 157 OPERATING SYSTEM COMMAND (OSC)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 ~^ PM 0x9e 158 PRIVACY MESSAGE (PM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 ~_ AC 0x9f 159 APPLICATION PROGRAM COMMAND (APC)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 | NS 0xa0 160 NO-BREAK SPACE
2698
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
254 ¡ !I 0xa1 161 INVERTED EXCLAMATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
255 ¢ Ct 0xa2 162 CENT SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
256 £ Pd 0xa3 163 POUND SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
257 ¤ Cu 0xa4 164 CURRENCY SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
258 ¥ Ye 0xa5 165 YEN SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
259 ¦ BB 0xa6 166 BROKEN BAR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
260 § SE 0xa7 167 SECTION SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
261 ¨ ': 0xa8 168 DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
262 © Co 0xa9 169 COPYRIGHT SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
263 ª -a 0xaa 170 FEMININE ORDINAL INDICATOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
264 « << 0xab 171 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
265 ¬ NO 0xac 172 NOT SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
266 ­ -- 0xad 173 SOFT HYPHEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
267 ® Rg 0xae 174 REGISTERED SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
268 ¯ 'm 0xaf 175 MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
269 ° DG 0xb0 176 DEGREE SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
270 ± +- 0xb1 177 PLUS-MINUS SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
271 ² 2S 0xb2 178 SUPERSCRIPT TWO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
272 ³ 3S 0xb3 179 SUPERSCRIPT THREE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
273 ´ '' 0xb4 180 ACUTE ACCENT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
274 µ My 0xb5 181 MICRO SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
275 ¶ PI 0xb6 182 PILCROW SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
276 · .M 0xb7 183 MIDDLE DOT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
277 ¸ ', 0xb8 184 CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
278 ¹ 1S 0xb9 185 SUPERSCRIPT ONE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
279 º -o 0xba 186 MASCULINE ORDINAL INDICATOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
280 » >> 0xbb 187 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
281 ¼ 14 0xbc 188 VULGAR FRACTION ONE QUARTER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
282 ½ 12 0xbd 189 VULGAR FRACTION ONE HALF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
283 ¾ 34 0xbe 190 VULGAR FRACTION THREE QUARTERS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
284 ¿ ?I 0xbf 191 INVERTED QUESTION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
285 À A! 0xc0 192 LATIN CAPITAL LETTER A WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
286 Á A' 0xc1 193 LATIN CAPITAL LETTER A WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
287 Â A> 0xc2 194 LATIN CAPITAL LETTER A WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
288 Ã A? 0xc3 195 LATIN CAPITAL LETTER A WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
289 Ä A: 0xc4 196 LATIN CAPITAL LETTER A WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
290 Å AA 0xc5 197 LATIN CAPITAL LETTER A WITH RING ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
291 Æ AE 0xc6 198 LATIN CAPITAL LETTER AE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
292 Ç C, 0xc7 199 LATIN CAPITAL LETTER C WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
293 È E! 0xc8 200 LATIN CAPITAL LETTER E WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
294 É E' 0xc9 201 LATIN CAPITAL LETTER E WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
295 Ê E> 0xca 202 LATIN CAPITAL LETTER E WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
296 Ë E: 0xcb 203 LATIN CAPITAL LETTER E WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
297 Ì I! 0xcc 204 LATIN CAPITAL LETTER I WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
298 Í I' 0xcd 205 LATIN CAPITAL LETTER I WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
299 Î I> 0xce 206 LATIN CAPITAL LETTER I WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
300 Ï I: 0xcf 207 LATIN CAPITAL LETTER I WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
301 Ð D- 0xd0 208 LATIN CAPITAL LETTER ETH (Icelandic)
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
302 Ñ N? 0xd1 209 LATIN CAPITAL LETTER N WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
303 Ò O! 0xd2 210 LATIN CAPITAL LETTER O WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
304 Ó O' 0xd3 211 LATIN CAPITAL LETTER O WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
305 Ô O> 0xd4 212 LATIN CAPITAL LETTER O WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
306 Õ O? 0xd5 213 LATIN CAPITAL LETTER O WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
307 Ö O: 0xd6 214 LATIN CAPITAL LETTER O WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
308 × *X 0xd7 215 MULTIPLICATION SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
309 Ø O/ 0xd8 216 LATIN CAPITAL LETTER O WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
310 Ù U! 0xd9 217 LATIN CAPITAL LETTER U WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
311 Ú U' 0xda 218 LATIN CAPITAL LETTER U WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
312 Û U> 0xdb 219 LATIN CAPITAL LETTER U WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
313 Ü U: 0xdc 220 LATIN CAPITAL LETTER U WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
314 Ý Y' 0xdd 221 LATIN CAPITAL LETTER Y WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
315 Þ TH 0xde 222 LATIN CAPITAL LETTER THORN (Icelandic)
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
316 ß ss 0xdf 223 LATIN SMALL LETTER SHARP S (German)
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
317 à a! 0xe0 224 LATIN SMALL LETTER A WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
318 á a' 0xe1 225 LATIN SMALL LETTER A WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
319 â a> 0xe2 226 LATIN SMALL LETTER A WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
320 ã a? 0xe3 227 LATIN SMALL LETTER A WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
321 ä a: 0xe4 228 LATIN SMALL LETTER A WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
322 å aa 0xe5 229 LATIN SMALL LETTER A WITH RING ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
323 æ ae 0xe6 230 LATIN SMALL LETTER AE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
324 ç c, 0xe7 231 LATIN SMALL LETTER C WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
325 è e! 0xe8 232 LATIN SMALL LETTER E WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
326 é e' 0xe9 233 LATIN SMALL LETTER E WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
327 ê e> 0xea 234 LATIN SMALL LETTER E WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
328 ë e: 0xeb 235 LATIN SMALL LETTER E WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
329 ì i! 0xec 236 LATIN SMALL LETTER I WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
330 í i' 0xed 237 LATIN SMALL LETTER I WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
331 î i> 0xee 238 LATIN SMALL LETTER I WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
332 ï i: 0xef 239 LATIN SMALL LETTER I WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
333 ð d- 0xf0 240 LATIN SMALL LETTER ETH (Icelandic)
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
334 ñ n? 0xf1 241 LATIN SMALL LETTER N WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
335 ò o! 0xf2 242 LATIN SMALL LETTER O WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
336 ó o' 0xf3 243 LATIN SMALL LETTER O WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
337 ô o> 0xf4 244 LATIN SMALL LETTER O WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
338 õ o? 0xf5 245 LATIN SMALL LETTER O WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
339 ö o: 0xf6 246 LATIN SMALL LETTER O WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
340 ÷ -: 0xf7 247 DIVISION SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
341 ø o/ 0xf8 248 LATIN SMALL LETTER O WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
342 ù u! 0xf9 249 LATIN SMALL LETTER U WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
343 ú u' 0xfa 250 LATIN SMALL LETTER U WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
344 û u> 0xfb 251 LATIN SMALL LETTER U WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
345 ü u: 0xfc 252 LATIN SMALL LETTER U WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
346 ý y' 0xfd 253 LATIN SMALL LETTER Y WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
347 þ th 0xfe 254 LATIN SMALL LETTER THORN (Icelandic)
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
348 ÿ y: 0xff 255 LATIN SMALL LETTER Y WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
349
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
350 If your Vim is compiled with |multibyte| support and you are using a multibyte
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
351 'encoding', Vim provides this enhanced set of additional digraphs:
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
352
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
353 *digraph-table-mbyte*
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
354 char digraph hex dec official name ~
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
355 Ā A- 0100 0256 LATIN CAPITAL LETTER A WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
356 ā a- 0101 0257 LATIN SMALL LETTER A WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
357 Ă A( 0102 0258 LATIN CAPITAL LETTER A WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
358 ă a( 0103 0259 LATIN SMALL LETTER A WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
359 Ą A; 0104 0260 LATIN CAPITAL LETTER A WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
360 ą a; 0105 0261 LATIN SMALL LETTER A WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
361 Ć C' 0106 0262 LATIN CAPITAL LETTER C WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
362 ć c' 0107 0263 LATIN SMALL LETTER C WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
363 Ĉ C> 0108 0264 LATIN CAPITAL LETTER C WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
364 ĉ c> 0109 0265 LATIN SMALL LETTER C WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
365 Ċ C. 010A 0266 LATIN CAPITAL LETTER C WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
366 ċ c. 010B 0267 LATIN SMALL LETTER C WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
367 Č C< 010C 0268 LATIN CAPITAL LETTER C WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
368 č c< 010D 0269 LATIN SMALL LETTER C WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
369 Ď D< 010E 0270 LATIN CAPITAL LETTER D WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
370 ď d< 010F 0271 LATIN SMALL LETTER D WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
371 Đ D/ 0110 0272 LATIN CAPITAL LETTER D WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
372 đ d/ 0111 0273 LATIN SMALL LETTER D WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
373 Ē E- 0112 0274 LATIN CAPITAL LETTER E WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
374 ē e- 0113 0275 LATIN SMALL LETTER E WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
375 Ĕ E( 0114 0276 LATIN CAPITAL LETTER E WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
376 ĕ e( 0115 0277 LATIN SMALL LETTER E WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
377 Ė E. 0116 0278 LATIN CAPITAL LETTER E WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
378 ė e. 0117 0279 LATIN SMALL LETTER E WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
379 Ę E; 0118 0280 LATIN CAPITAL LETTER E WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
380 ę e; 0119 0281 LATIN SMALL LETTER E WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
381 Ě E< 011A 0282 LATIN CAPITAL LETTER E WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
382 ě e< 011B 0283 LATIN SMALL LETTER E WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
383 Ĝ G> 011C 0284 LATIN CAPITAL LETTER G WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
384 ĝ g> 011D 0285 LATIN SMALL LETTER G WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
385 Ğ G( 011E 0286 LATIN CAPITAL LETTER G WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
386 ğ g( 011F 0287 LATIN SMALL LETTER G WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
387 Ġ G. 0120 0288 LATIN CAPITAL LETTER G WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
388 ġ g. 0121 0289 LATIN SMALL LETTER G WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
389 Ģ G, 0122 0290 LATIN CAPITAL LETTER G WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
390 ģ g, 0123 0291 LATIN SMALL LETTER G WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
391 Ĥ H> 0124 0292 LATIN CAPITAL LETTER H WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
392 ĥ h> 0125 0293 LATIN SMALL LETTER H WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
393 Ħ H/ 0126 0294 LATIN CAPITAL LETTER H WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
394 ħ h/ 0127 0295 LATIN SMALL LETTER H WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
395 Ĩ I? 0128 0296 LATIN CAPITAL LETTER I WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
396 ĩ i? 0129 0297 LATIN SMALL LETTER I WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
397 Ī I- 012A 0298 LATIN CAPITAL LETTER I WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
398 ī i- 012B 0299 LATIN SMALL LETTER I WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
399 Ĭ I( 012C 0300 LATIN CAPITAL LETTER I WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
400 ĭ i( 012D 0301 LATIN SMALL LETTER I WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
401 Į I; 012E 0302 LATIN CAPITAL LETTER I WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
402 į i; 012F 0303 LATIN SMALL LETTER I WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
403 İ I. 0130 0304 LATIN CAPITAL LETTER I WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
404 ı i. 0131 0305 LATIN SMALL LETTER DOTLESS I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
405 IJ IJ 0132 0306 LATIN CAPITAL LIGATURE IJ
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
406 ij ij 0133 0307 LATIN SMALL LIGATURE IJ
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
407 Ĵ J> 0134 0308 LATIN CAPITAL LETTER J WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
408 ĵ j> 0135 0309 LATIN SMALL LETTER J WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
409 Ķ K, 0136 0310 LATIN CAPITAL LETTER K WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
410 ķ k, 0137 0311 LATIN SMALL LETTER K WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
411 ĸ kk 0138 0312 LATIN SMALL LETTER KRA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
412 Ĺ L' 0139 0313 LATIN CAPITAL LETTER L WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
413 ĺ l' 013A 0314 LATIN SMALL LETTER L WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
414 Ļ L, 013B 0315 LATIN CAPITAL LETTER L WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
415 ļ l, 013C 0316 LATIN SMALL LETTER L WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
416 Ľ L< 013D 0317 LATIN CAPITAL LETTER L WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
417 ľ l< 013E 0318 LATIN SMALL LETTER L WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
418 Ŀ L. 013F 0319 LATIN CAPITAL LETTER L WITH MIDDLE DOT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
419 ŀ l. 0140 0320 LATIN SMALL LETTER L WITH MIDDLE DOT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
420 Ł L/ 0141 0321 LATIN CAPITAL LETTER L WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
421 ł l/ 0142 0322 LATIN SMALL LETTER L WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
422 Ń N' 0143 0323 LATIN CAPITAL LETTER N WITH ACUTE `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
423 ń n' 0144 0324 LATIN SMALL LETTER N WITH ACUTE `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
424 Ņ N, 0145 0325 LATIN CAPITAL LETTER N WITH CEDILLA `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
425 ņ n, 0146 0326 LATIN SMALL LETTER N WITH CEDILLA `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
426 Ň N< 0147 0327 LATIN CAPITAL LETTER N WITH CARON `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
427 ň n< 0148 0328 LATIN SMALL LETTER N WITH CARON `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
428 ʼn 'n 0149 0329 LATIN SMALL LETTER N PRECEDED BY APOSTROPHE `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
429 Ŋ NG 014A 0330 LATIN CAPITAL LETTER ENG
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
430 ŋ ng 014B 0331 LATIN SMALL LETTER ENG
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
431 Ō O- 014C 0332 LATIN CAPITAL LETTER O WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
432 ō o- 014D 0333 LATIN SMALL LETTER O WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
433 Ŏ O( 014E 0334 LATIN CAPITAL LETTER O WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
434 ŏ o( 014F 0335 LATIN SMALL LETTER O WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
435 Ő O" 0150 0336 LATIN CAPITAL LETTER O WITH DOUBLE ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
436 ő o" 0151 0337 LATIN SMALL LETTER O WITH DOUBLE ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
437 ΠOE 0152 0338 LATIN CAPITAL LIGATURE OE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
438 œ oe 0153 0339 LATIN SMALL LIGATURE OE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
439 Ŕ R' 0154 0340 LATIN CAPITAL LETTER R WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
440 ŕ r' 0155 0341 LATIN SMALL LETTER R WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
441 Ŗ R, 0156 0342 LATIN CAPITAL LETTER R WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
442 ŗ r, 0157 0343 LATIN SMALL LETTER R WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
443 Ř R< 0158 0344 LATIN CAPITAL LETTER R WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
444 ř r< 0159 0345 LATIN SMALL LETTER R WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
445 Ś S' 015A 0346 LATIN CAPITAL LETTER S WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
446 ś s' 015B 0347 LATIN SMALL LETTER S WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
447 Ŝ S> 015C 0348 LATIN CAPITAL LETTER S WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
448 ŝ s> 015D 0349 LATIN SMALL LETTER S WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
449 Ş S, 015E 0350 LATIN CAPITAL LETTER S WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
450 ş s, 015F 0351 LATIN SMALL LETTER S WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
451 Š S< 0160 0352 LATIN CAPITAL LETTER S WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
452 š s< 0161 0353 LATIN SMALL LETTER S WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
453 Ţ T, 0162 0354 LATIN CAPITAL LETTER T WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
454 ţ t, 0163 0355 LATIN SMALL LETTER T WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
455 Ť T< 0164 0356 LATIN CAPITAL LETTER T WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
456 ť t< 0165 0357 LATIN SMALL LETTER T WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
457 Ŧ T/ 0166 0358 LATIN CAPITAL LETTER T WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
458 ŧ t/ 0167 0359 LATIN SMALL LETTER T WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
459 Ũ U? 0168 0360 LATIN CAPITAL LETTER U WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
460 ũ u? 0169 0361 LATIN SMALL LETTER U WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
461 Ū U- 016A 0362 LATIN CAPITAL LETTER U WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
462 ū u- 016B 0363 LATIN SMALL LETTER U WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
463 Ŭ U( 016C 0364 LATIN CAPITAL LETTER U WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
464 ŭ u( 016D 0365 LATIN SMALL LETTER U WITH BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
465 Ů U0 016E 0366 LATIN CAPITAL LETTER U WITH RING ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
466 ů u0 016F 0367 LATIN SMALL LETTER U WITH RING ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
467 Ű U" 0170 0368 LATIN CAPITAL LETTER U WITH DOUBLE ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
468 ű u" 0171 0369 LATIN SMALL LETTER U WITH DOUBLE ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
469 Ų U; 0172 0370 LATIN CAPITAL LETTER U WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
470 ų u; 0173 0371 LATIN SMALL LETTER U WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
471 Ŵ W> 0174 0372 LATIN CAPITAL LETTER W WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
472 ŵ w> 0175 0373 LATIN SMALL LETTER W WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
473 Ŷ Y> 0176 0374 LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
474 ŷ y> 0177 0375 LATIN SMALL LETTER Y WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
475 Ÿ Y: 0178 0376 LATIN CAPITAL LETTER Y WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
476 Ź Z' 0179 0377 LATIN CAPITAL LETTER Z WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
477 ź z' 017A 0378 LATIN SMALL LETTER Z WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
478 Ż Z. 017B 0379 LATIN CAPITAL LETTER Z WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
479 ż z. 017C 0380 LATIN SMALL LETTER Z WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
480 Ž Z< 017D 0381 LATIN CAPITAL LETTER Z WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
481 ž z< 017E 0382 LATIN SMALL LETTER Z WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
482 Ơ O9 01A0 0416 LATIN CAPITAL LETTER O WITH HORN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
483 ơ o9 01A1 0417 LATIN SMALL LETTER O WITH HORN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
484 Ƣ OI 01A2 0418 LATIN CAPITAL LETTER OI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
485 ƣ oi 01A3 0419 LATIN SMALL LETTER OI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
486 Ʀ yr 01A6 0422 LATIN LETTER YR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
487 Ư U9 01AF 0431 LATIN CAPITAL LETTER U WITH HORN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
488 ư u9 01B0 0432 LATIN SMALL LETTER U WITH HORN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
489 Ƶ Z/ 01B5 0437 LATIN CAPITAL LETTER Z WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
490 ƶ z/ 01B6 0438 LATIN SMALL LETTER Z WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
491 Ʒ ED 01B7 0439 LATIN CAPITAL LETTER EZH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
492 Ǎ A< 01CD 0461 LATIN CAPITAL LETTER A WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
493 ǎ a< 01CE 0462 LATIN SMALL LETTER A WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
494 Ǐ I< 01CF 0463 LATIN CAPITAL LETTER I WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
495 ǐ i< 01D0 0464 LATIN SMALL LETTER I WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
496 Ǒ O< 01D1 0465 LATIN CAPITAL LETTER O WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
497 ǒ o< 01D2 0466 LATIN SMALL LETTER O WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
498 Ǔ U< 01D3 0467 LATIN CAPITAL LETTER U WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
499 ǔ u< 01D4 0468 LATIN SMALL LETTER U WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
500 Ǟ A1 01DE 0478 LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
501 ǟ a1 01DF 0479 LATIN SMALL LETTER A WITH DIAERESIS AND MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
502 Ǡ A7 01E0 0480 LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
503 ǡ a7 01E1 0481 LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
504 Ǣ A3 01E2 0482 LATIN CAPITAL LETTER AE WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
505 ǣ a3 01E3 0483 LATIN SMALL LETTER AE WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
506 Ǥ G/ 01E4 0484 LATIN CAPITAL LETTER G WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
507 ǥ g/ 01E5 0485 LATIN SMALL LETTER G WITH STROKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
508 Ǧ G< 01E6 0486 LATIN CAPITAL LETTER G WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
509 ǧ g< 01E7 0487 LATIN SMALL LETTER G WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
510 Ǩ K< 01E8 0488 LATIN CAPITAL LETTER K WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
511 ǩ k< 01E9 0489 LATIN SMALL LETTER K WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
512 Ǫ O; 01EA 0490 LATIN CAPITAL LETTER O WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
513 ǫ o; 01EB 0491 LATIN SMALL LETTER O WITH OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
514 Ǭ O1 01EC 0492 LATIN CAPITAL LETTER O WITH OGONEK AND MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
515 ǭ o1 01ED 0493 LATIN SMALL LETTER O WITH OGONEK AND MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
516 Ǯ EZ 01EE 0494 LATIN CAPITAL LETTER EZH WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
517 ǯ ez 01EF 0495 LATIN SMALL LETTER EZH WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
518 ǰ j< 01F0 0496 LATIN SMALL LETTER J WITH CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
519 Ǵ G' 01F4 0500 LATIN CAPITAL LETTER G WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
520 ǵ g' 01F5 0501 LATIN SMALL LETTER G WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
521 ʿ ;S 02BF 0703 MODIFIER LETTER LEFT HALF RING
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
522 ˇ '< 02C7 0711 CARON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
523 ˘ '( 02D8 0728 BREVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
524 ˙ '. 02D9 0729 DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
525 ˚ '0 02DA 0730 RING ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
526 ˛ '; 02DB 0731 OGONEK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
527 ˝ '" 02DD 0733 DOUBLE ACUTE ACCENT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
528 Ά A% 0386 0902 GREEK CAPITAL LETTER ALPHA WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
529 Έ E% 0388 0904 GREEK CAPITAL LETTER EPSILON WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
530 Ή Y% 0389 0905 GREEK CAPITAL LETTER ETA WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
531 Ί I% 038A 0906 GREEK CAPITAL LETTER IOTA WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
532 Ό O% 038C 0908 GREEK CAPITAL LETTER OMICRON WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
533 Ύ U% 038E 0910 GREEK CAPITAL LETTER UPSILON WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
534 Ώ W% 038F 0911 GREEK CAPITAL LETTER OMEGA WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
535 ΐ i3 0390 0912 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
536 Α A* 0391 0913 GREEK CAPITAL LETTER ALPHA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
537 Β B* 0392 0914 GREEK CAPITAL LETTER BETA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
538 Γ G* 0393 0915 GREEK CAPITAL LETTER GAMMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
539 Δ D* 0394 0916 GREEK CAPITAL LETTER DELTA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
540 Ε E* 0395 0917 GREEK CAPITAL LETTER EPSILON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
541 Ζ Z* 0396 0918 GREEK CAPITAL LETTER ZETA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
542 Η Y* 0397 0919 GREEK CAPITAL LETTER ETA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
543 Θ H* 0398 0920 GREEK CAPITAL LETTER THETA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
544 Ι I* 0399 0921 GREEK CAPITAL LETTER IOTA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
545 Κ K* 039A 0922 GREEK CAPITAL LETTER KAPPA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
546 Λ L* 039B 0923 GREEK CAPITAL LETTER LAMDA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
547 Μ M* 039C 0924 GREEK CAPITAL LETTER MU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
548 Ν N* 039D 0925 GREEK CAPITAL LETTER NU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
549 Ξ C* 039E 0926 GREEK CAPITAL LETTER XI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
550 Ο O* 039F 0927 GREEK CAPITAL LETTER OMICRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
551 Π P* 03A0 0928 GREEK CAPITAL LETTER PI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
552 Ρ R* 03A1 0929 GREEK CAPITAL LETTER RHO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
553 Σ S* 03A3 0931 GREEK CAPITAL LETTER SIGMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
554 Τ T* 03A4 0932 GREEK CAPITAL LETTER TAU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
555 Υ U* 03A5 0933 GREEK CAPITAL LETTER UPSILON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
556 Φ F* 03A6 0934 GREEK CAPITAL LETTER PHI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
557 Χ X* 03A7 0935 GREEK CAPITAL LETTER CHI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
558 Ψ Q* 03A8 0936 GREEK CAPITAL LETTER PSI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
559 Ω W* 03A9 0937 GREEK CAPITAL LETTER OMEGA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
560 Ϊ J* 03AA 0938 GREEK CAPITAL LETTER IOTA WITH DIALYTIKA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
561 Ϋ V* 03AB 0939 GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
562 ά a% 03AC 0940 GREEK SMALL LETTER ALPHA WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
563 έ e% 03AD 0941 GREEK SMALL LETTER EPSILON WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
564 ή y% 03AE 0942 GREEK SMALL LETTER ETA WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
565 ί i% 03AF 0943 GREEK SMALL LETTER IOTA WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
566 ΰ u3 03B0 0944 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
567 α a* 03B1 0945 GREEK SMALL LETTER ALPHA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
568 β b* 03B2 0946 GREEK SMALL LETTER BETA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
569 γ g* 03B3 0947 GREEK SMALL LETTER GAMMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
570 δ d* 03B4 0948 GREEK SMALL LETTER DELTA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
571 ε e* 03B5 0949 GREEK SMALL LETTER EPSILON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
572 ζ z* 03B6 0950 GREEK SMALL LETTER ZETA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
573 η y* 03B7 0951 GREEK SMALL LETTER ETA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
574 θ h* 03B8 0952 GREEK SMALL LETTER THETA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
575 ι i* 03B9 0953 GREEK SMALL LETTER IOTA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
576 κ k* 03BA 0954 GREEK SMALL LETTER KAPPA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
577 λ l* 03BB 0955 GREEK SMALL LETTER LAMDA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
578 μ m* 03BC 0956 GREEK SMALL LETTER MU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
579 ν n* 03BD 0957 GREEK SMALL LETTER NU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
580 ξ c* 03BE 0958 GREEK SMALL LETTER XI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
581 ο o* 03BF 0959 GREEK SMALL LETTER OMICRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
582 π p* 03C0 0960 GREEK SMALL LETTER PI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
583 ρ r* 03C1 0961 GREEK SMALL LETTER RHO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
584 ς *s 03C2 0962 GREEK SMALL LETTER FINAL SIGMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
585 σ s* 03C3 0963 GREEK SMALL LETTER SIGMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
586 τ t* 03C4 0964 GREEK SMALL LETTER TAU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
587 υ u* 03C5 0965 GREEK SMALL LETTER UPSILON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
588 φ f* 03C6 0966 GREEK SMALL LETTER PHI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
589 χ x* 03C7 0967 GREEK SMALL LETTER CHI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
590 ψ q* 03C8 0968 GREEK SMALL LETTER PSI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
591 ω w* 03C9 0969 GREEK SMALL LETTER OMEGA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
592 ϊ j* 03CA 0970 GREEK SMALL LETTER IOTA WITH DIALYTIKA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
593 ϋ v* 03CB 0971 GREEK SMALL LETTER UPSILON WITH DIALYTIKA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
594 ό o% 03CC 0972 GREEK SMALL LETTER OMICRON WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
595 ύ u% 03CD 0973 GREEK SMALL LETTER UPSILON WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
596 ώ w% 03CE 0974 GREEK SMALL LETTER OMEGA WITH TONOS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
597 Ϙ 'G 03D8 0984 GREEK LETTER ARCHAIC KOPPA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
598 ϙ ,G 03D9 0985 GREEK SMALL LETTER ARCHAIC KOPPA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
599 Ϛ T3 03DA 0986 GREEK LETTER STIGMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
600 ϛ t3 03DB 0987 GREEK SMALL LETTER STIGMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
601 Ϝ M3 03DC 0988 GREEK LETTER DIGAMMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
602 ϝ m3 03DD 0989 GREEK SMALL LETTER DIGAMMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
603 Ϟ K3 03DE 0990 GREEK LETTER KOPPA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
604 ϟ k3 03DF 0991 GREEK SMALL LETTER KOPPA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
605 Ϡ P3 03E0 0992 GREEK LETTER SAMPI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
606 ϡ p3 03E1 0993 GREEK SMALL LETTER SAMPI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
607 ϴ '% 03F4 1012 GREEK CAPITAL THETA SYMBOL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
608 ϵ j3 03F5 1013 GREEK LUNATE EPSILON SYMBOL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
609 Ё IO 0401 1025 CYRILLIC CAPITAL LETTER IO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
610 Ђ D% 0402 1026 CYRILLIC CAPITAL LETTER DJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
611 Ѓ G% 0403 1027 CYRILLIC CAPITAL LETTER GJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
612 Є IE 0404 1028 CYRILLIC CAPITAL LETTER UKRAINIAN IE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
613 Ѕ DS 0405 1029 CYRILLIC CAPITAL LETTER DZE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
614 І II 0406 1030 CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
615 Ї YI 0407 1031 CYRILLIC CAPITAL LETTER YI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
616 Ј J% 0408 1032 CYRILLIC CAPITAL LETTER JE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
617 Љ LJ 0409 1033 CYRILLIC CAPITAL LETTER LJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
618 Њ NJ 040A 1034 CYRILLIC CAPITAL LETTER NJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
619 Ћ Ts 040B 1035 CYRILLIC CAPITAL LETTER TSHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
620 Ќ KJ 040C 1036 CYRILLIC CAPITAL LETTER KJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
621 Ў V% 040E 1038 CYRILLIC CAPITAL LETTER SHORT U
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
622 Џ DZ 040F 1039 CYRILLIC CAPITAL LETTER DZHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
623 А A= 0410 1040 CYRILLIC CAPITAL LETTER A
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
624 Б B= 0411 1041 CYRILLIC CAPITAL LETTER BE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
625 В V= 0412 1042 CYRILLIC CAPITAL LETTER VE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
626 Г G= 0413 1043 CYRILLIC CAPITAL LETTER GHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
627 Д D= 0414 1044 CYRILLIC CAPITAL LETTER DE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
628 Е E= 0415 1045 CYRILLIC CAPITAL LETTER IE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
629 Ж Z% 0416 1046 CYRILLIC CAPITAL LETTER ZHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
630 З Z= 0417 1047 CYRILLIC CAPITAL LETTER ZE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
631 И I= 0418 1048 CYRILLIC CAPITAL LETTER I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
632 Й J= 0419 1049 CYRILLIC CAPITAL LETTER SHORT I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
633 К K= 041A 1050 CYRILLIC CAPITAL LETTER KA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
634 Л L= 041B 1051 CYRILLIC CAPITAL LETTER EL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
635 М M= 041C 1052 CYRILLIC CAPITAL LETTER EM
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
636 Н N= 041D 1053 CYRILLIC CAPITAL LETTER EN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
637 О O= 041E 1054 CYRILLIC CAPITAL LETTER O
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
638 П P= 041F 1055 CYRILLIC CAPITAL LETTER PE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
639 Р R= 0420 1056 CYRILLIC CAPITAL LETTER ER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
640 С S= 0421 1057 CYRILLIC CAPITAL LETTER ES
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
641 Т T= 0422 1058 CYRILLIC CAPITAL LETTER TE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
642 У U= 0423 1059 CYRILLIC CAPITAL LETTER U
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
643 Ф F= 0424 1060 CYRILLIC CAPITAL LETTER EF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
644 Х H= 0425 1061 CYRILLIC CAPITAL LETTER HA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
645 Ц C= 0426 1062 CYRILLIC CAPITAL LETTER TSE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
646 Ч C% 0427 1063 CYRILLIC CAPITAL LETTER CHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
647 Ш S% 0428 1064 CYRILLIC CAPITAL LETTER SHA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
648 Щ Sc 0429 1065 CYRILLIC CAPITAL LETTER SHCHA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
649 Ъ =" 042A 1066 CYRILLIC CAPITAL LETTER HARD SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
650 Ы Y= 042B 1067 CYRILLIC CAPITAL LETTER YERU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
651 Ь %" 042C 1068 CYRILLIC CAPITAL LETTER SOFT SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
652 Э JE 042D 1069 CYRILLIC CAPITAL LETTER E
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
653 Ю JU 042E 1070 CYRILLIC CAPITAL LETTER YU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
654 Я JA 042F 1071 CYRILLIC CAPITAL LETTER YA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
655 а a= 0430 1072 CYRILLIC SMALL LETTER A
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
656 б b= 0431 1073 CYRILLIC SMALL LETTER BE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
657 в v= 0432 1074 CYRILLIC SMALL LETTER VE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
658 г g= 0433 1075 CYRILLIC SMALL LETTER GHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
659 д d= 0434 1076 CYRILLIC SMALL LETTER DE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
660 е e= 0435 1077 CYRILLIC SMALL LETTER IE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
661 ж z% 0436 1078 CYRILLIC SMALL LETTER ZHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
662 з z= 0437 1079 CYRILLIC SMALL LETTER ZE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
663 и i= 0438 1080 CYRILLIC SMALL LETTER I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
664 й j= 0439 1081 CYRILLIC SMALL LETTER SHORT I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
665 к k= 043A 1082 CYRILLIC SMALL LETTER KA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
666 л l= 043B 1083 CYRILLIC SMALL LETTER EL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
667 м m= 043C 1084 CYRILLIC SMALL LETTER EM
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
668 н n= 043D 1085 CYRILLIC SMALL LETTER EN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
669 о o= 043E 1086 CYRILLIC SMALL LETTER O
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
670 п p= 043F 1087 CYRILLIC SMALL LETTER PE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
671 р r= 0440 1088 CYRILLIC SMALL LETTER ER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
672 с s= 0441 1089 CYRILLIC SMALL LETTER ES
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
673 т t= 0442 1090 CYRILLIC SMALL LETTER TE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
674 у u= 0443 1091 CYRILLIC SMALL LETTER U
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
675 ф f= 0444 1092 CYRILLIC SMALL LETTER EF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
676 х h= 0445 1093 CYRILLIC SMALL LETTER HA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
677 ц c= 0446 1094 CYRILLIC SMALL LETTER TSE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
678 ч c% 0447 1095 CYRILLIC SMALL LETTER CHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
679 ш s% 0448 1096 CYRILLIC SMALL LETTER SHA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
680 щ sc 0449 1097 CYRILLIC SMALL LETTER SHCHA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
681 ъ =' 044A 1098 CYRILLIC SMALL LETTER HARD SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
682 ы y= 044B 1099 CYRILLIC SMALL LETTER YERU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
683 ь %' 044C 1100 CYRILLIC SMALL LETTER SOFT SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
684 э je 044D 1101 CYRILLIC SMALL LETTER E
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
685 ю ju 044E 1102 CYRILLIC SMALL LETTER YU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
686 я ja 044F 1103 CYRILLIC SMALL LETTER YA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
687 ё io 0451 1105 CYRILLIC SMALL LETTER IO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
688 ђ d% 0452 1106 CYRILLIC SMALL LETTER DJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
689 ѓ g% 0453 1107 CYRILLIC SMALL LETTER GJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
690 є ie 0454 1108 CYRILLIC SMALL LETTER UKRAINIAN IE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
691 ѕ ds 0455 1109 CYRILLIC SMALL LETTER DZE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
692 і ii 0456 1110 CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
693 ї yi 0457 1111 CYRILLIC SMALL LETTER YI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
694 ј j% 0458 1112 CYRILLIC SMALL LETTER JE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
695 љ lj 0459 1113 CYRILLIC SMALL LETTER LJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
696 њ nj 045A 1114 CYRILLIC SMALL LETTER NJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
697 ћ ts 045B 1115 CYRILLIC SMALL LETTER TSHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
698 ќ kj 045C 1116 CYRILLIC SMALL LETTER KJE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
699 ў v% 045E 1118 CYRILLIC SMALL LETTER SHORT U
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
700 џ dz 045F 1119 CYRILLIC SMALL LETTER DZHE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
701 Ѣ Y3 0462 1122 CYRILLIC CAPITAL LETTER YAT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
702 ѣ y3 0463 1123 CYRILLIC SMALL LETTER YAT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
703 Ѫ O3 046A 1130 CYRILLIC CAPITAL LETTER BIG YUS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
704 ѫ o3 046B 1131 CYRILLIC SMALL LETTER BIG YUS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
705 Ѳ F3 0472 1138 CYRILLIC CAPITAL LETTER FITA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
706 ѳ f3 0473 1139 CYRILLIC SMALL LETTER FITA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
707 Ѵ V3 0474 1140 CYRILLIC CAPITAL LETTER IZHITSA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
708 ѵ v3 0475 1141 CYRILLIC SMALL LETTER IZHITSA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
709 Ҁ C3 0480 1152 CYRILLIC CAPITAL LETTER KOPPA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
710 ҁ c3 0481 1153 CYRILLIC SMALL LETTER KOPPA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
711 Ґ G3 0490 1168 CYRILLIC CAPITAL LETTER GHE WITH UPTURN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
712 ґ g3 0491 1169 CYRILLIC SMALL LETTER GHE WITH UPTURN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
713 א A+ 05D0 1488 HEBREW LETTER ALEF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
714 ב B+ 05D1 1489 HEBREW LETTER BET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
715 ג G+ 05D2 1490 HEBREW LETTER GIMEL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
716 ד D+ 05D3 1491 HEBREW LETTER DALET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
717 ה H+ 05D4 1492 HEBREW LETTER HE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
718 ו W+ 05D5 1493 HEBREW LETTER VAV
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
719 ז Z+ 05D6 1494 HEBREW LETTER ZAYIN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
720 ח X+ 05D7 1495 HEBREW LETTER HET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
721 ט Tj 05D8 1496 HEBREW LETTER TET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
722 י J+ 05D9 1497 HEBREW LETTER YOD
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
723 ך K% 05DA 1498 HEBREW LETTER FINAL KAF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
724 כ K+ 05DB 1499 HEBREW LETTER KAF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
725 ל L+ 05DC 1500 HEBREW LETTER LAMED
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
726 ם M% 05DD 1501 HEBREW LETTER FINAL MEM
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
727 מ M+ 05DE 1502 HEBREW LETTER MEM
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
728 ן N% 05DF 1503 HEBREW LETTER FINAL NUN `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
729 נ N+ 05E0 1504 HEBREW LETTER NUN `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
730 ס S+ 05E1 1505 HEBREW LETTER SAMEKH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
731 ע E+ 05E2 1506 HEBREW LETTER AYIN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
732 ף P% 05E3 1507 HEBREW LETTER FINAL PE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
733 פ P+ 05E4 1508 HEBREW LETTER PE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
734 ץ Zj 05E5 1509 HEBREW LETTER FINAL TSADI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
735 צ ZJ 05E6 1510 HEBREW LETTER TSADI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
736 ק Q+ 05E7 1511 HEBREW LETTER QOF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
737 ר R+ 05E8 1512 HEBREW LETTER RESH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
738 ש Sh 05E9 1513 HEBREW LETTER SHIN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
739 ת T+ 05EA 1514 HEBREW LETTER TAV
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
740 ، ,+ 060C 1548 ARABIC COMMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
741 ؛ ;+ 061B 1563 ARABIC SEMICOLON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
742 ؟ ?+ 061F 1567 ARABIC QUESTION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
743 ء H' 0621 1569 ARABIC LETTER HAMZA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
744 آ aM 0622 1570 ARABIC LETTER ALEF WITH MADDA ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
745 أ aH 0623 1571 ARABIC LETTER ALEF WITH HAMZA ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
746 ؤ wH 0624 1572 ARABIC LETTER WAW WITH HAMZA ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
747 إ ah 0625 1573 ARABIC LETTER ALEF WITH HAMZA BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
748 ئ yH 0626 1574 ARABIC LETTER YEH WITH HAMZA ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
749 ا a+ 0627 1575 ARABIC LETTER ALEF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
750 ب b+ 0628 1576 ARABIC LETTER BEH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
751 ة tm 0629 1577 ARABIC LETTER TEH MARBUTA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
752 ت t+ 062A 1578 ARABIC LETTER TEH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
753 ث tk 062B 1579 ARABIC LETTER THEH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
754 ج g+ 062C 1580 ARABIC LETTER JEEM
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
755 ح hk 062D 1581 ARABIC LETTER HAH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
756 خ x+ 062E 1582 ARABIC LETTER KHAH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
757 د d+ 062F 1583 ARABIC LETTER DAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
758 ذ dk 0630 1584 ARABIC LETTER THAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
759 ر r+ 0631 1585 ARABIC LETTER REH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
760 ز z+ 0632 1586 ARABIC LETTER ZAIN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
761 س s+ 0633 1587 ARABIC LETTER SEEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
762 ش sn 0634 1588 ARABIC LETTER SHEEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
763 ص c+ 0635 1589 ARABIC LETTER SAD
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
764 ض dd 0636 1590 ARABIC LETTER DAD
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
765 ط tj 0637 1591 ARABIC LETTER TAH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
766 ظ zH 0638 1592 ARABIC LETTER ZAH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
767 ع e+ 0639 1593 ARABIC LETTER AIN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
768 غ i+ 063A 1594 ARABIC LETTER GHAIN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
769 ـ ++ 0640 1600 ARABIC TATWEEL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
770 ف f+ 0641 1601 ARABIC LETTER FEH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
771 ق q+ 0642 1602 ARABIC LETTER QAF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
772 ك k+ 0643 1603 ARABIC LETTER KAF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
773 ل l+ 0644 1604 ARABIC LETTER LAM
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
774 م m+ 0645 1605 ARABIC LETTER MEEM
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
775 ن n+ 0646 1606 ARABIC LETTER NOON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
776 ه h+ 0647 1607 ARABIC LETTER HEH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
777 و w+ 0648 1608 ARABIC LETTER WAW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
778 ى j+ 0649 1609 ARABIC LETTER ALEF MAKSURA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
779 ي y+ 064A 1610 ARABIC LETTER YEH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
780 ً :+ 064B 1611 ARABIC FATHATAN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
781 ٌ "+ 064C 1612 ARABIC DAMMATAN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
782 ٍ =+ 064D 1613 ARABIC KASRATAN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
783 َ /+ 064E 1614 ARABIC FATHA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
784 ُ '+ 064F 1615 ARABIC DAMMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
785 ِ 1+ 0650 1616 ARABIC KASRA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
786 ّ 3+ 0651 1617 ARABIC SHADDA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
787 ْ 0+ 0652 1618 ARABIC SUKUN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
788 ٰ aS 0670 1648 ARABIC LETTER SUPERSCRIPT ALEF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
789 پ p+ 067E 1662 ARABIC LETTER PEH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
790 ڤ v+ 06A4 1700 ARABIC LETTER VEH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
791 گ gf 06AF 1711 ARABIC LETTER GAF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
792 ۰ 0a 06F0 1776 EXTENDED ARABIC-INDIC DIGIT ZERO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
793 ۱ 1a 06F1 1777 EXTENDED ARABIC-INDIC DIGIT ONE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
794 ۲ 2a 06F2 1778 EXTENDED ARABIC-INDIC DIGIT TWO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
795 ۳ 3a 06F3 1779 EXTENDED ARABIC-INDIC DIGIT THREE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
796 ۴ 4a 06F4 1780 EXTENDED ARABIC-INDIC DIGIT FOUR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
797 ۵ 5a 06F5 1781 EXTENDED ARABIC-INDIC DIGIT FIVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
798 ۶ 6a 06F6 1782 EXTENDED ARABIC-INDIC DIGIT SIX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
799 ۷ 7a 06F7 1783 EXTENDED ARABIC-INDIC DIGIT SEVEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
800 ۸ 8a 06F8 1784 EXTENDED ARABIC-INDIC DIGIT EIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
801 ۹ 9a 06F9 1785 EXTENDED ARABIC-INDIC DIGIT NINE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
802 Ḃ B. 1E02 7682 LATIN CAPITAL LETTER B WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
803 ḃ b. 1E03 7683 LATIN SMALL LETTER B WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
804 Ḇ B_ 1E06 7686 LATIN CAPITAL LETTER B WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
805 ḇ b_ 1E07 7687 LATIN SMALL LETTER B WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
806 Ḋ D. 1E0A 7690 LATIN CAPITAL LETTER D WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
807 ḋ d. 1E0B 7691 LATIN SMALL LETTER D WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
808 Ḏ D_ 1E0E 7694 LATIN CAPITAL LETTER D WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
809 ḏ d_ 1E0F 7695 LATIN SMALL LETTER D WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
810 Ḑ D, 1E10 7696 LATIN CAPITAL LETTER D WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
811 ḑ d, 1E11 7697 LATIN SMALL LETTER D WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
812 Ḟ F. 1E1E 7710 LATIN CAPITAL LETTER F WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
813 ḟ f. 1E1F 7711 LATIN SMALL LETTER F WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
814 Ḡ G- 1E20 7712 LATIN CAPITAL LETTER G WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
815 ḡ g- 1E21 7713 LATIN SMALL LETTER G WITH MACRON
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
816 Ḣ H. 1E22 7714 LATIN CAPITAL LETTER H WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
817 ḣ h. 1E23 7715 LATIN SMALL LETTER H WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
818 Ḧ H: 1E26 7718 LATIN CAPITAL LETTER H WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
819 ḧ h: 1E27 7719 LATIN SMALL LETTER H WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
820 Ḩ H, 1E28 7720 LATIN CAPITAL LETTER H WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
821 ḩ h, 1E29 7721 LATIN SMALL LETTER H WITH CEDILLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
822 Ḱ K' 1E30 7728 LATIN CAPITAL LETTER K WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
823 ḱ k' 1E31 7729 LATIN SMALL LETTER K WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
824 Ḵ K_ 1E34 7732 LATIN CAPITAL LETTER K WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
825 ḵ k_ 1E35 7733 LATIN SMALL LETTER K WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
826 Ḻ L_ 1E3A 7738 LATIN CAPITAL LETTER L WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
827 ḻ l_ 1E3B 7739 LATIN SMALL LETTER L WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
828 Ḿ M' 1E3E 7742 LATIN CAPITAL LETTER M WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
829 ḿ m' 1E3F 7743 LATIN SMALL LETTER M WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
830 Ṁ M. 1E40 7744 LATIN CAPITAL LETTER M WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
831 ṁ m. 1E41 7745 LATIN SMALL LETTER M WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
832 Ṅ N. 1E44 7748 LATIN CAPITAL LETTER N WITH DOT ABOVE `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
833 ṅ n. 1E45 7749 LATIN SMALL LETTER N WITH DOT ABOVE `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
834 Ṉ N_ 1E48 7752 LATIN CAPITAL LETTER N WITH LINE BELOW `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
835 ṉ n_ 1E49 7753 LATIN SMALL LETTER N WITH LINE BELOW `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
836 Ṕ P' 1E54 7764 LATIN CAPITAL LETTER P WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
837 ṕ p' 1E55 7765 LATIN SMALL LETTER P WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
838 Ṗ P. 1E56 7766 LATIN CAPITAL LETTER P WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
839 ṗ p. 1E57 7767 LATIN SMALL LETTER P WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
840 Ṙ R. 1E58 7768 LATIN CAPITAL LETTER R WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
841 ṙ r. 1E59 7769 LATIN SMALL LETTER R WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
842 Ṟ R_ 1E5E 7774 LATIN CAPITAL LETTER R WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
843 ṟ r_ 1E5F 7775 LATIN SMALL LETTER R WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
844 Ṡ S. 1E60 7776 LATIN CAPITAL LETTER S WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
845 ṡ s. 1E61 7777 LATIN SMALL LETTER S WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
846 Ṫ T. 1E6A 7786 LATIN CAPITAL LETTER T WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
847 ṫ t. 1E6B 7787 LATIN SMALL LETTER T WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
848 Ṯ T_ 1E6E 7790 LATIN CAPITAL LETTER T WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
849 ṯ t_ 1E6F 7791 LATIN SMALL LETTER T WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
850 Ṽ V? 1E7C 7804 LATIN CAPITAL LETTER V WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
851 ṽ v? 1E7D 7805 LATIN SMALL LETTER V WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
852 Ẁ W! 1E80 7808 LATIN CAPITAL LETTER W WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
853 ẁ w! 1E81 7809 LATIN SMALL LETTER W WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
854 Ẃ W' 1E82 7810 LATIN CAPITAL LETTER W WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
855 ẃ w' 1E83 7811 LATIN SMALL LETTER W WITH ACUTE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
856 Ẅ W: 1E84 7812 LATIN CAPITAL LETTER W WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
857 ẅ w: 1E85 7813 LATIN SMALL LETTER W WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
858 Ẇ W. 1E86 7814 LATIN CAPITAL LETTER W WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
859 ẇ w. 1E87 7815 LATIN SMALL LETTER W WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
860 Ẋ X. 1E8A 7818 LATIN CAPITAL LETTER X WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
861 ẋ x. 1E8B 7819 LATIN SMALL LETTER X WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
862 Ẍ X: 1E8C 7820 LATIN CAPITAL LETTER X WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
863 ẍ x: 1E8D 7821 LATIN SMALL LETTER X WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
864 Ẏ Y. 1E8E 7822 LATIN CAPITAL LETTER Y WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
865 ẏ y. 1E8F 7823 LATIN SMALL LETTER Y WITH DOT ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
866 Ẑ Z> 1E90 7824 LATIN CAPITAL LETTER Z WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
867 ẑ z> 1E91 7825 LATIN SMALL LETTER Z WITH CIRCUMFLEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
868 Ẕ Z_ 1E94 7828 LATIN CAPITAL LETTER Z WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
869 ẕ z_ 1E95 7829 LATIN SMALL LETTER Z WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
870 ẖ h_ 1E96 7830 LATIN SMALL LETTER H WITH LINE BELOW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
871 ẗ t: 1E97 7831 LATIN SMALL LETTER T WITH DIAERESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
872 ẘ w0 1E98 7832 LATIN SMALL LETTER W WITH RING ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
873 ẙ y0 1E99 7833 LATIN SMALL LETTER Y WITH RING ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
874 Ả A2 1EA2 7842 LATIN CAPITAL LETTER A WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
875 ả a2 1EA3 7843 LATIN SMALL LETTER A WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
876 Ẻ E2 1EBA 7866 LATIN CAPITAL LETTER E WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
877 ẻ e2 1EBB 7867 LATIN SMALL LETTER E WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
878 Ẽ E? 1EBC 7868 LATIN CAPITAL LETTER E WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
879 ẽ e? 1EBD 7869 LATIN SMALL LETTER E WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
880 Ỉ I2 1EC8 7880 LATIN CAPITAL LETTER I WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
881 ỉ i2 1EC9 7881 LATIN SMALL LETTER I WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
882 Ỏ O2 1ECE 7886 LATIN CAPITAL LETTER O WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
883 ỏ o2 1ECF 7887 LATIN SMALL LETTER O WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
884 Ủ U2 1EE6 7910 LATIN CAPITAL LETTER U WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
885 ủ u2 1EE7 7911 LATIN SMALL LETTER U WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
886 Ỳ Y! 1EF2 7922 LATIN CAPITAL LETTER Y WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
887 ỳ y! 1EF3 7923 LATIN SMALL LETTER Y WITH GRAVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
888 Ỷ Y2 1EF6 7926 LATIN CAPITAL LETTER Y WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
889 ỷ y2 1EF7 7927 LATIN SMALL LETTER Y WITH HOOK ABOVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
890 Ỹ Y? 1EF8 7928 LATIN CAPITAL LETTER Y WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
891 ỹ y? 1EF9 7929 LATIN SMALL LETTER Y WITH TILDE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
892 ἀ ;' 1F00 7936 GREEK SMALL LETTER ALPHA WITH PSILI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
893 ἁ ,' 1F01 7937 GREEK SMALL LETTER ALPHA WITH DASIA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
894 ἂ ;! 1F02 7938 GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
895 ἃ ,! 1F03 7939 GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
896 ἄ ?; 1F04 7940 GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
897 ἅ ?, 1F05 7941 GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
898 ἆ !: 1F06 7942 GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
899 ἇ ?: 1F07 7943 GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
900   1N 2002 8194 EN SPACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
901   1M 2003 8195 EM SPACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
902   3M 2004 8196 THREE-PER-EM SPACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
903   4M 2005 8197 FOUR-PER-EM SPACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
904   6M 2006 8198 SIX-PER-EM SPACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
905   1T 2009 8201 THIN SPACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
906   1H 200A 8202 HAIR SPACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
907 ‐ -1 2010 8208 HYPHEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
908 – -N 2013 8211 EN DASH `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
909 — -M 2014 8212 EM DASH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
910 ― -3 2015 8213 HORIZONTAL BAR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
911 ‖ !2 2016 8214 DOUBLE VERTICAL LINE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
912 ‗ =2 2017 8215 DOUBLE LOW LINE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
913 ‘ '6 2018 8216 LEFT SINGLE QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
914 ’ '9 2019 8217 RIGHT SINGLE QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
915 ‚ .9 201A 8218 SINGLE LOW-9 QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
916 ‛ 9' 201B 8219 SINGLE HIGH-REVERSED-9 QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
917 “ "6 201C 8220 LEFT DOUBLE QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
918 ” "9 201D 8221 RIGHT DOUBLE QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
919 „ :9 201E 8222 DOUBLE LOW-9 QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
920 ‟ 9" 201F 8223 DOUBLE HIGH-REVERSED-9 QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
921 † /- 2020 8224 DAGGER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
922 ‡ /= 2021 8225 DOUBLE DAGGER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
923 ‥ .. 2025 8229 TWO DOT LEADER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
924 ‰ %0 2030 8240 PER MILLE SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
925 ′ 1' 2032 8242 PRIME
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
926 ″ 2' 2033 8243 DOUBLE PRIME
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
927 ‴ 3' 2034 8244 TRIPLE PRIME
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
928 ‵ 1" 2035 8245 REVERSED PRIME
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
929 ‶ 2" 2036 8246 REVERSED DOUBLE PRIME
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
930 ‷ 3" 2037 8247 REVERSED TRIPLE PRIME
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
931 ‸ Ca 2038 8248 CARET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
932 ‹ <1 2039 8249 SINGLE LEFT-POINTING ANGLE QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
933 › >1 203A 8250 SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
934 ※ :X 203B 8251 REFERENCE MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
935 ‾ '- 203E 8254 OVERLINE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
936 ⁄ /f 2044 8260 FRACTION SLASH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
937 ⁰ 0S 2070 8304 SUPERSCRIPT ZERO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
938 ⁴ 4S 2074 8308 SUPERSCRIPT FOUR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
939 ⁵ 5S 2075 8309 SUPERSCRIPT FIVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
940 ⁶ 6S 2076 8310 SUPERSCRIPT SIX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
941 ⁷ 7S 2077 8311 SUPERSCRIPT SEVEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
942 ⁸ 8S 2078 8312 SUPERSCRIPT EIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
943 ⁹ 9S 2079 8313 SUPERSCRIPT NINE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
944 ⁺ +S 207A 8314 SUPERSCRIPT PLUS SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
945 ⁻ -S 207B 8315 SUPERSCRIPT MINUS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
946 ⁼ =S 207C 8316 SUPERSCRIPT EQUALS SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
947 ⁽ (S 207D 8317 SUPERSCRIPT LEFT PARENTHESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
948 ⁾ )S 207E 8318 SUPERSCRIPT RIGHT PARENTHESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
949 ⁿ nS 207F 8319 SUPERSCRIPT LATIN SMALL LETTER N `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
950 ₀ 0s 2080 8320 SUBSCRIPT ZERO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
951 ₁ 1s 2081 8321 SUBSCRIPT ONE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
952 ₂ 2s 2082 8322 SUBSCRIPT TWO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
953 ₃ 3s 2083 8323 SUBSCRIPT THREE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
954 ₄ 4s 2084 8324 SUBSCRIPT FOUR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
955 ₅ 5s 2085 8325 SUBSCRIPT FIVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
956 ₆ 6s 2086 8326 SUBSCRIPT SIX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
957 ₇ 7s 2087 8327 SUBSCRIPT SEVEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
958 ₈ 8s 2088 8328 SUBSCRIPT EIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
959 ₉ 9s 2089 8329 SUBSCRIPT NINE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
960 ₊ +s 208A 8330 SUBSCRIPT PLUS SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
961 ₋ -s 208B 8331 SUBSCRIPT MINUS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
962 ₌ =s 208C 8332 SUBSCRIPT EQUALS SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
963 ₍ (s 208D 8333 SUBSCRIPT LEFT PARENTHESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
964 ₎ )s 208E 8334 SUBSCRIPT RIGHT PARENTHESIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
965 ₤ Li 20A4 8356 LIRA SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
966 ₧ Pt 20A7 8359 PESETA SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
967 ₩ W= 20A9 8361 WON SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
968 € Eu 20AC 8364 EURO SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
969 ℃ oC 2103 8451 DEGREE CELSIUS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
970 ℅ co 2105 8453 CARE OF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
971 ℉ oF 2109 8457 DEGREE FAHRENHEIT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
972 № N0 2116 8470 NUMERO SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
973 ℗ PO 2117 8471 SOUND RECORDING COPYRIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
974 ℞ Rx 211E 8478 PRESCRIPTION TAKE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
975 ℠ SM 2120 8480 SERVICE MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
976 ™ TM 2122 8482 TRADE MARK SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
977 Ω Om 2126 8486 OHM SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
978 Å AO 212B 8491 ANGSTROM SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
979 ⅓ 13 2153 8531 VULGAR FRACTION ONE THIRD
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
980 ⅔ 23 2154 8532 VULGAR FRACTION TWO THIRDS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
981 ⅕ 15 2155 8533 VULGAR FRACTION ONE FIFTH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
982 ⅖ 25 2156 8534 VULGAR FRACTION TWO FIFTHS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
983 ⅗ 35 2157 8535 VULGAR FRACTION THREE FIFTHS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
984 ⅘ 45 2158 8536 VULGAR FRACTION FOUR FIFTHS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
985 ⅙ 16 2159 8537 VULGAR FRACTION ONE SIXTH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
986 ⅚ 56 215A 8538 VULGAR FRACTION FIVE SIXTHS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
987 ⅛ 18 215B 8539 VULGAR FRACTION ONE EIGHTH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
988 ⅜ 38 215C 8540 VULGAR FRACTION THREE EIGHTHS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
989 ⅝ 58 215D 8541 VULGAR FRACTION FIVE EIGHTHS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
990 ⅞ 78 215E 8542 VULGAR FRACTION SEVEN EIGHTHS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
991 Ⅰ 1R 2160 8544 ROMAN NUMERAL ONE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
992 Ⅱ 2R 2161 8545 ROMAN NUMERAL TWO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
993 Ⅲ 3R 2162 8546 ROMAN NUMERAL THREE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
994 Ⅳ 4R 2163 8547 ROMAN NUMERAL FOUR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
995 Ⅴ 5R 2164 8548 ROMAN NUMERAL FIVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
996 Ⅵ 6R 2165 8549 ROMAN NUMERAL SIX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
997 Ⅶ 7R 2166 8550 ROMAN NUMERAL SEVEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
998 Ⅷ 8R 2167 8551 ROMAN NUMERAL EIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
999 Ⅸ 9R 2168 8552 ROMAN NUMERAL NINE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1000 Ⅹ aR 2169 8553 ROMAN NUMERAL TEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1001 Ⅺ bR 216A 8554 ROMAN NUMERAL ELEVEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1002 Ⅻ cR 216B 8555 ROMAN NUMERAL TWELVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1003 ⅰ 1r 2170 8560 SMALL ROMAN NUMERAL ONE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1004 ⅱ 2r 2171 8561 SMALL ROMAN NUMERAL TWO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1005 ⅲ 3r 2172 8562 SMALL ROMAN NUMERAL THREE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1006 ⅳ 4r 2173 8563 SMALL ROMAN NUMERAL FOUR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1007 ⅴ 5r 2174 8564 SMALL ROMAN NUMERAL FIVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1008 ⅵ 6r 2175 8565 SMALL ROMAN NUMERAL SIX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1009 ⅶ 7r 2176 8566 SMALL ROMAN NUMERAL SEVEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1010 ⅷ 8r 2177 8567 SMALL ROMAN NUMERAL EIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1011 ⅸ 9r 2178 8568 SMALL ROMAN NUMERAL NINE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1012 ⅹ ar 2179 8569 SMALL ROMAN NUMERAL TEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1013 ⅺ br 217A 8570 SMALL ROMAN NUMERAL ELEVEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1014 ⅻ cr 217B 8571 SMALL ROMAN NUMERAL TWELVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1015 ← <- 2190 8592 LEFTWARDS ARROW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1016 ↑ -! 2191 8593 UPWARDS ARROW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1017 → -> 2192 8594 RIGHTWARDS ARROW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1018 ↓ -v 2193 8595 DOWNWARDS ARROW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1019 ↔ <> 2194 8596 LEFT RIGHT ARROW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1020 ↕ UD 2195 8597 UP DOWN ARROW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1021 ⇐ <= 21D0 8656 LEFTWARDS DOUBLE ARROW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1022 ⇒ => 21D2 8658 RIGHTWARDS DOUBLE ARROW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1023 ⇔ == 21D4 8660 LEFT RIGHT DOUBLE ARROW
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1024 ∀ FA 2200 8704 FOR ALL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1025 ∂ dP 2202 8706 PARTIAL DIFFERENTIAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1026 ∃ TE 2203 8707 THERE EXISTS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1027 ∅ /0 2205 8709 EMPTY SET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1028 ∆ DE 2206 8710 INCREMENT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1029 ∇ NB 2207 8711 NABLA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1030 ∈ (- 2208 8712 ELEMENT OF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1031 ∋ -) 220B 8715 CONTAINS AS MEMBER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1032 ∏ *P 220F 8719 N-ARY PRODUCT `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1033 ∑ +Z 2211 8721 N-ARY SUMMATION `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1034 − -2 2212 8722 MINUS SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1035 ∓ -+ 2213 8723 MINUS-OR-PLUS SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1036 ∗ *- 2217 8727 ASTERISK OPERATOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1037 ∘ Ob 2218 8728 RING OPERATOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1038 ∙ Sb 2219 8729 BULLET OPERATOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1039 √ RT 221A 8730 SQUARE ROOT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1040 ∝ 0( 221D 8733 PROPORTIONAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1041 ∞ 00 221E 8734 INFINITY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1042 ∟ -L 221F 8735 RIGHT ANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1043 ∠ -V 2220 8736 ANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1044 ∥ PP 2225 8741 PARALLEL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1045 ∧ AN 2227 8743 LOGICAL AND
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1046 ∨ OR 2228 8744 LOGICAL OR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1047 ∩ (U 2229 8745 INTERSECTION
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1048 ∪ )U 222A 8746 UNION
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1049 ∫ In 222B 8747 INTEGRAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1050 ∬ DI 222C 8748 DOUBLE INTEGRAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1051 ∮ Io 222E 8750 CONTOUR INTEGRAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1052 ∴ .: 2234 8756 THEREFORE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1053 ∵ :. 2235 8757 BECAUSE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1054 ∶ :R 2236 8758 RATIO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1055 ∷ :: 2237 8759 PROPORTION
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1056 ∼ ?1 223C 8764 TILDE OPERATOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1057 ∾ CG 223E 8766 INVERTED LAZY S
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1058 ≃ ?- 2243 8771 ASYMPTOTICALLY EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1059 ≅ ?= 2245 8773 APPROXIMATELY EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1060 ≈ ?2 2248 8776 ALMOST EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1061 ≌ =? 224C 8780 ALL EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1062 ≓ HI 2253 8787 IMAGE OF OR APPROXIMATELY EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1063 ≠ != 2260 8800 NOT EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1064 ≡ =3 2261 8801 IDENTICAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1065 ≤ =< 2264 8804 LESS-THAN OR EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1066 ≥ >= 2265 8805 GREATER-THAN OR EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1067 ≪ <* 226A 8810 MUCH LESS-THAN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1068 ≫ *> 226B 8811 MUCH GREATER-THAN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1069 ≮ !< 226E 8814 NOT LESS-THAN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1070 ≯ !> 226F 8815 NOT GREATER-THAN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1071 ⊂ (C 2282 8834 SUBSET OF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1072 ⊃ )C 2283 8835 SUPERSET OF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1073 ⊆ (_ 2286 8838 SUBSET OF OR EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1074 ⊇ )_ 2287 8839 SUPERSET OF OR EQUAL TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1075 ⊙ 0. 2299 8857 CIRCLED DOT OPERATOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1076 ⊚ 02 229A 8858 CIRCLED RING OPERATOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1077 ⊥ -T 22A5 8869 UP TACK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1078 ⋅ .P 22C5 8901 DOT OPERATOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1079 ⋮ :3 22EE 8942 VERTICAL ELLIPSIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1080 ⋯ .3 22EF 8943 MIDLINE HORIZONTAL ELLIPSIS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1081 ⌂ Eh 2302 8962 HOUSE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1082 ⌈ <7 2308 8968 LEFT CEILING
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1083 ⌉ >7 2309 8969 RIGHT CEILING
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1084 ⌊ 7< 230A 8970 LEFT FLOOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1085 ⌋ 7> 230B 8971 RIGHT FLOOR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1086 ⌐ NI 2310 8976 REVERSED NOT SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1087 ⌒ (A 2312 8978 ARC
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1088 ⌕ TR 2315 8981 TELEPHONE RECORDER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1089 ⌠ Iu 2320 8992 TOP HALF INTEGRAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1090 ⌡ Il 2321 8993 BOTTOM HALF INTEGRAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1091 〈 </ 2329 9001 LEFT-POINTING ANGLE BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1092 〉 /> 232A 9002 RIGHT-POINTING ANGLE BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1093 ␣ Vs 2423 9251 OPEN BOX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1094 ⑀ 1h 2440 9280 OCR HOOK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1095 ⑁ 3h 2441 9281 OCR CHAIR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1096 ⑂ 2h 2442 9282 OCR FORK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1097 ⑃ 4h 2443 9283 OCR INVERTED FORK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1098 ⑆ 1j 2446 9286 OCR BRANCH BANK IDENTIFICATION
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1099 ⑇ 2j 2447 9287 OCR AMOUNT OF CHECK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1100 ⑈ 3j 2448 9288 OCR DASH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1101 ⑉ 4j 2449 9289 OCR CUSTOMER ACCOUNT NUMBER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1102 ⒈ 1. 2488 9352 DIGIT ONE FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1103 ⒉ 2. 2489 9353 DIGIT TWO FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1104 ⒊ 3. 248A 9354 DIGIT THREE FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1105 ⒋ 4. 248B 9355 DIGIT FOUR FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1106 ⒌ 5. 248C 9356 DIGIT FIVE FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1107 ⒍ 6. 248D 9357 DIGIT SIX FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1108 ⒎ 7. 248E 9358 DIGIT SEVEN FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1109 ⒏ 8. 248F 9359 DIGIT EIGHT FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1110 ⒐ 9. 2490 9360 DIGIT NINE FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1111 ─ hh 2500 9472 BOX DRAWINGS LIGHT HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1112 ━ HH 2501 9473 BOX DRAWINGS HEAVY HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1113 │ vv 2502 9474 BOX DRAWINGS LIGHT VERTICAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1114 ┃ VV 2503 9475 BOX DRAWINGS HEAVY VERTICAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1115 ┄ 3- 2504 9476 BOX DRAWINGS LIGHT TRIPLE DASH HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1116 ┅ 3_ 2505 9477 BOX DRAWINGS HEAVY TRIPLE DASH HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1117 ┆ 3! 2506 9478 BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1118 ┇ 3/ 2507 9479 BOX DRAWINGS HEAVY TRIPLE DASH VERTICAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1119 ┈ 4- 2508 9480 BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1120 ┉ 4_ 2509 9481 BOX DRAWINGS HEAVY QUADRUPLE DASH HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1121 ┊ 4! 250A 9482 BOX DRAWINGS LIGHT QUADRUPLE DASH VERTICAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1122 ┋ 4/ 250B 9483 BOX DRAWINGS HEAVY QUADRUPLE DASH VERTICAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1123 ┌ dr 250C 9484 BOX DRAWINGS LIGHT DOWN AND RIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1124 ┍ dR 250D 9485 BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1125 ┎ Dr 250E 9486 BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1126 ┏ DR 250F 9487 BOX DRAWINGS HEAVY DOWN AND RIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1127 ┐ dl 2510 9488 BOX DRAWINGS LIGHT DOWN AND LEFT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1128 ┑ dL 2511 9489 BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1129 ┒ Dl 2512 9490 BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1130 ┓ LD 2513 9491 BOX DRAWINGS HEAVY DOWN AND LEFT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1131 └ ur 2514 9492 BOX DRAWINGS LIGHT UP AND RIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1132 ┕ uR 2515 9493 BOX DRAWINGS UP LIGHT AND RIGHT HEAVY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1133 ┖ Ur 2516 9494 BOX DRAWINGS UP HEAVY AND RIGHT LIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1134 ┗ UR 2517 9495 BOX DRAWINGS HEAVY UP AND RIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1135 ┘ ul 2518 9496 BOX DRAWINGS LIGHT UP AND LEFT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1136 ┙ uL 2519 9497 BOX DRAWINGS UP LIGHT AND LEFT HEAVY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1137 ┚ Ul 251A 9498 BOX DRAWINGS UP HEAVY AND LEFT LIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1138 ┛ UL 251B 9499 BOX DRAWINGS HEAVY UP AND LEFT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1139 ├ vr 251C 9500 BOX DRAWINGS LIGHT VERTICAL AND RIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1140 ┝ vR 251D 9501 BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1141 ┠ Vr 2520 9504 BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1142 ┣ VR 2523 9507 BOX DRAWINGS HEAVY VERTICAL AND RIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1143 ┤ vl 2524 9508 BOX DRAWINGS LIGHT VERTICAL AND LEFT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1144 ┥ vL 2525 9509 BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1145 ┨ Vl 2528 9512 BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1146 ┫ VL 252B 9515 BOX DRAWINGS HEAVY VERTICAL AND LEFT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1147 ┬ dh 252C 9516 BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1148 ┯ dH 252F 9519 BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1149 ┰ Dh 2530 9520 BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1150 ┳ DH 2533 9523 BOX DRAWINGS HEAVY DOWN AND HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1151 ┴ uh 2534 9524 BOX DRAWINGS LIGHT UP AND HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1152 ┷ uH 2537 9527 BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1153 ┸ Uh 2538 9528 BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1154 ┻ UH 253B 9531 BOX DRAWINGS HEAVY UP AND HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1155 ┼ vh 253C 9532 BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1156 ┿ vH 253F 9535 BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1157 ╂ Vh 2542 9538 BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1158 ╋ VH 254B 9547 BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1159 ╱ FD 2571 9585 BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1160 ╲ BD 2572 9586 BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1161 ▀ TB 2580 9600 UPPER HALF BLOCK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1162 ▄ LB 2584 9604 LOWER HALF BLOCK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1163 █ FB 2588 9608 FULL BLOCK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1164 ▌ lB 258C 9612 LEFT HALF BLOCK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1165 ▐ RB 2590 9616 RIGHT HALF BLOCK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1166 ░ .S 2591 9617 LIGHT SHADE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1167 ▒ :S 2592 9618 MEDIUM SHADE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1168 ▓ ?S 2593 9619 DARK SHADE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1169 ■ fS 25A0 9632 BLACK SQUARE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1170 □ OS 25A1 9633 WHITE SQUARE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1171 ▢ RO 25A2 9634 WHITE SQUARE WITH ROUNDED CORNERS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1172 ▣ Rr 25A3 9635 WHITE SQUARE CONTAINING BLACK SMALL SQUARE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1173 ▤ RF 25A4 9636 SQUARE WITH HORIZONTAL FILL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1174 ▥ RY 25A5 9637 SQUARE WITH VERTICAL FILL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1175 ▦ RH 25A6 9638 SQUARE WITH ORTHOGONAL CROSSHATCH FILL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1176 ▧ RZ 25A7 9639 SQUARE WITH UPPER LEFT TO LOWER RIGHT FILL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1177 ▨ RK 25A8 9640 SQUARE WITH UPPER RIGHT TO LOWER LEFT FILL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1178 ▩ RX 25A9 9641 SQUARE WITH DIAGONAL CROSSHATCH FILL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1179 ▪ sB 25AA 9642 BLACK SMALL SQUARE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1180 ▬ SR 25AC 9644 BLACK RECTANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1181 ▭ Or 25AD 9645 WHITE RECTANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1182 ▲ UT 25B2 9650 BLACK UP-POINTING TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1183 △ uT 25B3 9651 WHITE UP-POINTING TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1184 ▶ PR 25B6 9654 BLACK RIGHT-POINTING TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1185 ▷ Tr 25B7 9655 WHITE RIGHT-POINTING TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1186 ▼ Dt 25BC 9660 BLACK DOWN-POINTING TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1187 ▽ dT 25BD 9661 WHITE DOWN-POINTING TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1188 ◀ PL 25C0 9664 BLACK LEFT-POINTING TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1189 ◁ Tl 25C1 9665 WHITE LEFT-POINTING TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1190 ◆ Db 25C6 9670 BLACK DIAMOND
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1191 ◇ Dw 25C7 9671 WHITE DIAMOND
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1192 ◊ LZ 25CA 9674 LOZENGE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1193 ○ 0m 25CB 9675 WHITE CIRCLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1194 ◎ 0o 25CE 9678 BULLSEYE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1195 ● 0M 25CF 9679 BLACK CIRCLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1196 ◐ 0L 25D0 9680 CIRCLE WITH LEFT HALF BLACK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1197 ◑ 0R 25D1 9681 CIRCLE WITH RIGHT HALF BLACK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1198 ◘ Sn 25D8 9688 INVERSE BULLET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1199 ◙ Ic 25D9 9689 INVERSE WHITE CIRCLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1200 ◢ Fd 25E2 9698 BLACK LOWER RIGHT TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1201 ◣ Bd 25E3 9699 BLACK LOWER LEFT TRIANGLE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1202 ★ *2 2605 9733 BLACK STAR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1203 ☆ *1 2606 9734 WHITE STAR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1204 ☜ <H 261C 9756 WHITE LEFT POINTING INDEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1205 ☞ >H 261E 9758 WHITE RIGHT POINTING INDEX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1206 ☺ 0u 263A 9786 WHITE SMILING FACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1207 ☻ 0U 263B 9787 BLACK SMILING FACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1208 ☼ SU 263C 9788 WHITE SUN WITH RAYS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1209 ♀ Fm 2640 9792 FEMALE SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1210 ♂ Ml 2642 9794 MALE SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1211 ♠ cS 2660 9824 BLACK SPADE SUIT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1212 ♡ cH 2661 9825 WHITE HEART SUIT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1213 ♢ cD 2662 9826 WHITE DIAMOND SUIT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1214 ♣ cC 2663 9827 BLACK CLUB SUIT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1215 ♩ Md 2669 9833 QUARTER NOTE `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1216 ♪ M8 266A 9834 EIGHTH NOTE `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1217 ♫ M2 266B 9835 BEAMED EIGHTH NOTES
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1218 ♭ Mb 266D 9837 MUSIC FLAT SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1219 ♮ Mx 266E 9838 MUSIC NATURAL SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1220 ♯ MX 266F 9839 MUSIC SHARP SIGN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1221 ✓ OK 2713 10003 CHECK MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1222 ✗ XX 2717 10007 BALLOT X
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1223 ✠ -X 2720 10016 MALTESE CROSS
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1224   IS 3000 12288 IDEOGRAPHIC SPACE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1225 、 ,_ 3001 12289 IDEOGRAPHIC COMMA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1226 。 ._ 3002 12290 IDEOGRAPHIC FULL STOP
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1227 〃 +" 3003 12291 DITTO MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1228 〄 +_ 3004 12292 JAPANESE INDUSTRIAL STANDARD SYMBOL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1229 々 *_ 3005 12293 IDEOGRAPHIC ITERATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1230 〆 ;_ 3006 12294 IDEOGRAPHIC CLOSING MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1231 〇 0_ 3007 12295 IDEOGRAPHIC NUMBER ZERO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1232 《 <+ 300A 12298 LEFT DOUBLE ANGLE BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1233 》 >+ 300B 12299 RIGHT DOUBLE ANGLE BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1234 「 <' 300C 12300 LEFT CORNER BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1235 」 >' 300D 12301 RIGHT CORNER BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1236 『 <" 300E 12302 LEFT WHITE CORNER BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1237 』 >" 300F 12303 RIGHT WHITE CORNER BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1238 【 (" 3010 12304 LEFT BLACK LENTICULAR BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1239 】 )" 3011 12305 RIGHT BLACK LENTICULAR BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1240 〒 =T 3012 12306 POSTAL MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1241 〓 =_ 3013 12307 GETA MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1242 〔 (' 3014 12308 LEFT TORTOISE SHELL BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1243 〕 )' 3015 12309 RIGHT TORTOISE SHELL BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1244 〖 (I 3016 12310 LEFT WHITE LENTICULAR BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1245 〗 )I 3017 12311 RIGHT WHITE LENTICULAR BRACKET
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1246 〜 -? 301C 12316 WAVE DASH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1247 ぁ A5 3041 12353 HIRAGANA LETTER SMALL A
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1248 あ a5 3042 12354 HIRAGANA LETTER A
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1249 ぃ I5 3043 12355 HIRAGANA LETTER SMALL I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1250 い i5 3044 12356 HIRAGANA LETTER I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1251 ぅ U5 3045 12357 HIRAGANA LETTER SMALL U
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1252 う u5 3046 12358 HIRAGANA LETTER U
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1253 ぇ E5 3047 12359 HIRAGANA LETTER SMALL E
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1254 え e5 3048 12360 HIRAGANA LETTER E
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1255 ぉ O5 3049 12361 HIRAGANA LETTER SMALL O
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1256 お o5 304A 12362 HIRAGANA LETTER O
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1257 か ka 304B 12363 HIRAGANA LETTER KA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1258 が ga 304C 12364 HIRAGANA LETTER GA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1259 き ki 304D 12365 HIRAGANA LETTER KI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1260 ぎ gi 304E 12366 HIRAGANA LETTER GI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1261 く ku 304F 12367 HIRAGANA LETTER KU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1262 ぐ gu 3050 12368 HIRAGANA LETTER GU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1263 け ke 3051 12369 HIRAGANA LETTER KE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1264 げ ge 3052 12370 HIRAGANA LETTER GE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1265 こ ko 3053 12371 HIRAGANA LETTER KO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1266 ご go 3054 12372 HIRAGANA LETTER GO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1267 さ sa 3055 12373 HIRAGANA LETTER SA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1268 ざ za 3056 12374 HIRAGANA LETTER ZA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1269 し si 3057 12375 HIRAGANA LETTER SI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1270 じ zi 3058 12376 HIRAGANA LETTER ZI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1271 す su 3059 12377 HIRAGANA LETTER SU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1272 ず zu 305A 12378 HIRAGANA LETTER ZU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1273 せ se 305B 12379 HIRAGANA LETTER SE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1274 ぜ ze 305C 12380 HIRAGANA LETTER ZE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1275 そ so 305D 12381 HIRAGANA LETTER SO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1276 ぞ zo 305E 12382 HIRAGANA LETTER ZO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1277 た ta 305F 12383 HIRAGANA LETTER TA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1278 だ da 3060 12384 HIRAGANA LETTER DA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1279 ち ti 3061 12385 HIRAGANA LETTER TI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1280 ぢ di 3062 12386 HIRAGANA LETTER DI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1281 っ tU 3063 12387 HIRAGANA LETTER SMALL TU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1282 つ tu 3064 12388 HIRAGANA LETTER TU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1283 づ du 3065 12389 HIRAGANA LETTER DU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1284 て te 3066 12390 HIRAGANA LETTER TE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1285 で de 3067 12391 HIRAGANA LETTER DE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1286 と to 3068 12392 HIRAGANA LETTER TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1287 ど do 3069 12393 HIRAGANA LETTER DO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1288 な na 306A 12394 HIRAGANA LETTER NA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1289 に ni 306B 12395 HIRAGANA LETTER NI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1290 ぬ nu 306C 12396 HIRAGANA LETTER NU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1291 ね ne 306D 12397 HIRAGANA LETTER NE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1292 の no 306E 12398 HIRAGANA LETTER NO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1293 は ha 306F 12399 HIRAGANA LETTER HA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1294 ば ba 3070 12400 HIRAGANA LETTER BA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1295 ぱ pa 3071 12401 HIRAGANA LETTER PA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1296 ひ hi 3072 12402 HIRAGANA LETTER HI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1297 び bi 3073 12403 HIRAGANA LETTER BI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1298 ぴ pi 3074 12404 HIRAGANA LETTER PI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1299 ふ hu 3075 12405 HIRAGANA LETTER HU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1300 ぶ bu 3076 12406 HIRAGANA LETTER BU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1301 ぷ pu 3077 12407 HIRAGANA LETTER PU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1302 へ he 3078 12408 HIRAGANA LETTER HE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1303 べ be 3079 12409 HIRAGANA LETTER BE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1304 ぺ pe 307A 12410 HIRAGANA LETTER PE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1305 ほ ho 307B 12411 HIRAGANA LETTER HO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1306 ぼ bo 307C 12412 HIRAGANA LETTER BO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1307 ぽ po 307D 12413 HIRAGANA LETTER PO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1308 ま ma 307E 12414 HIRAGANA LETTER MA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1309 み mi 307F 12415 HIRAGANA LETTER MI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1310 む mu 3080 12416 HIRAGANA LETTER MU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1311 め me 3081 12417 HIRAGANA LETTER ME
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1312 も mo 3082 12418 HIRAGANA LETTER MO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1313 ゃ yA 3083 12419 HIRAGANA LETTER SMALL YA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1314 や ya 3084 12420 HIRAGANA LETTER YA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1315 ゅ yU 3085 12421 HIRAGANA LETTER SMALL YU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1316 ゆ yu 3086 12422 HIRAGANA LETTER YU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1317 ょ yO 3087 12423 HIRAGANA LETTER SMALL YO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1318 よ yo 3088 12424 HIRAGANA LETTER YO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1319 ら ra 3089 12425 HIRAGANA LETTER RA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1320 り ri 308A 12426 HIRAGANA LETTER RI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1321 る ru 308B 12427 HIRAGANA LETTER RU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1322 れ re 308C 12428 HIRAGANA LETTER RE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1323 ろ ro 308D 12429 HIRAGANA LETTER RO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1324 ゎ wA 308E 12430 HIRAGANA LETTER SMALL WA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1325 わ wa 308F 12431 HIRAGANA LETTER WA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1326 ゐ wi 3090 12432 HIRAGANA LETTER WI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1327 ゑ we 3091 12433 HIRAGANA LETTER WE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1328 を wo 3092 12434 HIRAGANA LETTER WO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1329 ん n5 3093 12435 HIRAGANA LETTER N `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1330 ゔ vu 3094 12436 HIRAGANA LETTER VU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1331 ゛ "5 309B 12443 KATAKANA-HIRAGANA VOICED SOUND MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1332 ゜ 05 309C 12444 KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1333 ゝ *5 309D 12445 HIRAGANA ITERATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1334 ゞ +5 309E 12446 HIRAGANA VOICED ITERATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1335 ァ a6 30A1 12449 KATAKANA LETTER SMALL A
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1336 ア A6 30A2 12450 KATAKANA LETTER A
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1337 ィ i6 30A3 12451 KATAKANA LETTER SMALL I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1338 イ I6 30A4 12452 KATAKANA LETTER I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1339 ゥ u6 30A5 12453 KATAKANA LETTER SMALL U
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1340 ウ U6 30A6 12454 KATAKANA LETTER U
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1341 ェ e6 30A7 12455 KATAKANA LETTER SMALL E
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1342 エ E6 30A8 12456 KATAKANA LETTER E
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1343 ォ o6 30A9 12457 KATAKANA LETTER SMALL O
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1344 オ O6 30AA 12458 KATAKANA LETTER O
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1345 カ Ka 30AB 12459 KATAKANA LETTER KA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1346 ガ Ga 30AC 12460 KATAKANA LETTER GA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1347 キ Ki 30AD 12461 KATAKANA LETTER KI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1348 ギ Gi 30AE 12462 KATAKANA LETTER GI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1349 ク Ku 30AF 12463 KATAKANA LETTER KU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1350 グ Gu 30B0 12464 KATAKANA LETTER GU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1351 ケ Ke 30B1 12465 KATAKANA LETTER KE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1352 ゲ Ge 30B2 12466 KATAKANA LETTER GE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1353 コ Ko 30B3 12467 KATAKANA LETTER KO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1354 ゴ Go 30B4 12468 KATAKANA LETTER GO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1355 サ Sa 30B5 12469 KATAKANA LETTER SA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1356 ザ Za 30B6 12470 KATAKANA LETTER ZA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1357 シ Si 30B7 12471 KATAKANA LETTER SI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1358 ジ Zi 30B8 12472 KATAKANA LETTER ZI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1359 ス Su 30B9 12473 KATAKANA LETTER SU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1360 ズ Zu 30BA 12474 KATAKANA LETTER ZU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1361 セ Se 30BB 12475 KATAKANA LETTER SE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1362 ゼ Ze 30BC 12476 KATAKANA LETTER ZE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1363 ソ So 30BD 12477 KATAKANA LETTER SO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1364 ゾ Zo 30BE 12478 KATAKANA LETTER ZO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1365 タ Ta 30BF 12479 KATAKANA LETTER TA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1366 ダ Da 30C0 12480 KATAKANA LETTER DA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1367 チ Ti 30C1 12481 KATAKANA LETTER TI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1368 ヂ Di 30C2 12482 KATAKANA LETTER DI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1369 ッ TU 30C3 12483 KATAKANA LETTER SMALL TU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1370 ツ Tu 30C4 12484 KATAKANA LETTER TU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1371 ヅ Du 30C5 12485 KATAKANA LETTER DU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1372 テ Te 30C6 12486 KATAKANA LETTER TE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1373 デ De 30C7 12487 KATAKANA LETTER DE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1374 ト To 30C8 12488 KATAKANA LETTER TO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1375 ド Do 30C9 12489 KATAKANA LETTER DO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1376 ナ Na 30CA 12490 KATAKANA LETTER NA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1377 ニ Ni 30CB 12491 KATAKANA LETTER NI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1378 ヌ Nu 30CC 12492 KATAKANA LETTER NU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1379 ネ Ne 30CD 12493 KATAKANA LETTER NE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1380 ノ No 30CE 12494 KATAKANA LETTER NO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1381 ハ Ha 30CF 12495 KATAKANA LETTER HA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1382 バ Ba 30D0 12496 KATAKANA LETTER BA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1383 パ Pa 30D1 12497 KATAKANA LETTER PA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1384 ヒ Hi 30D2 12498 KATAKANA LETTER HI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1385 ビ Bi 30D3 12499 KATAKANA LETTER BI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1386 ピ Pi 30D4 12500 KATAKANA LETTER PI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1387 フ Hu 30D5 12501 KATAKANA LETTER HU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1388 ブ Bu 30D6 12502 KATAKANA LETTER BU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1389 プ Pu 30D7 12503 KATAKANA LETTER PU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1390 ヘ He 30D8 12504 KATAKANA LETTER HE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1391 ベ Be 30D9 12505 KATAKANA LETTER BE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1392 ペ Pe 30DA 12506 KATAKANA LETTER PE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1393 ホ Ho 30DB 12507 KATAKANA LETTER HO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1394 ボ Bo 30DC 12508 KATAKANA LETTER BO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1395 ポ Po 30DD 12509 KATAKANA LETTER PO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1396 マ Ma 30DE 12510 KATAKANA LETTER MA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1397 ミ Mi 30DF 12511 KATAKANA LETTER MI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1398 ム Mu 30E0 12512 KATAKANA LETTER MU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1399 メ Me 30E1 12513 KATAKANA LETTER ME
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1400 モ Mo 30E2 12514 KATAKANA LETTER MO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1401 ャ YA 30E3 12515 KATAKANA LETTER SMALL YA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1402 ヤ Ya 30E4 12516 KATAKANA LETTER YA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1403 ュ YU 30E5 12517 KATAKANA LETTER SMALL YU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1404 ユ Yu 30E6 12518 KATAKANA LETTER YU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1405 ョ YO 30E7 12519 KATAKANA LETTER SMALL YO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1406 ヨ Yo 30E8 12520 KATAKANA LETTER YO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1407 ラ Ra 30E9 12521 KATAKANA LETTER RA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1408 リ Ri 30EA 12522 KATAKANA LETTER RI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1409 ル Ru 30EB 12523 KATAKANA LETTER RU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1410 レ Re 30EC 12524 KATAKANA LETTER RE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1411 ロ Ro 30ED 12525 KATAKANA LETTER RO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1412 ヮ WA 30EE 12526 KATAKANA LETTER SMALL WA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1413 ワ Wa 30EF 12527 KATAKANA LETTER WA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1414 ヰ Wi 30F0 12528 KATAKANA LETTER WI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1415 ヱ We 30F1 12529 KATAKANA LETTER WE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1416 ヲ Wo 30F2 12530 KATAKANA LETTER WO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1417 ン N6 30F3 12531 KATAKANA LETTER N `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1418 ヴ Vu 30F4 12532 KATAKANA LETTER VU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1419 ヵ KA 30F5 12533 KATAKANA LETTER SMALL KA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1420 ヶ KE 30F6 12534 KATAKANA LETTER SMALL KE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1421 ヷ Va 30F7 12535 KATAKANA LETTER VA
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1422 ヸ Vi 30F8 12536 KATAKANA LETTER VI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1423 ヹ Ve 30F9 12537 KATAKANA LETTER VE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1424 ヺ Vo 30FA 12538 KATAKANA LETTER VO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1425 ・ .6 30FB 12539 KATAKANA MIDDLE DOT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1426 ー -6 30FC 12540 KATAKANA-HIRAGANA PROLONGED SOUND MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1427 ヽ *6 30FD 12541 KATAKANA ITERATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1428 ヾ +6 30FE 12542 KATAKANA VOICED ITERATION MARK
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1429 ㄅ b4 3105 12549 BOPOMOFO LETTER B
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1430 ㄆ p4 3106 12550 BOPOMOFO LETTER P
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1431 ㄇ m4 3107 12551 BOPOMOFO LETTER M
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1432 ㄈ f4 3108 12552 BOPOMOFO LETTER F
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1433 ㄉ d4 3109 12553 BOPOMOFO LETTER D
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1434 ㄊ t4 310A 12554 BOPOMOFO LETTER T
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1435 ㄋ n4 310B 12555 BOPOMOFO LETTER N `
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1436 ㄌ l4 310C 12556 BOPOMOFO LETTER L
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1437 ㄍ g4 310D 12557 BOPOMOFO LETTER G
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1438 ㄎ k4 310E 12558 BOPOMOFO LETTER K
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1439 ㄏ h4 310F 12559 BOPOMOFO LETTER H
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1440 ㄐ j4 3110 12560 BOPOMOFO LETTER J
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1441 ㄑ q4 3111 12561 BOPOMOFO LETTER Q
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1442 ㄒ x4 3112 12562 BOPOMOFO LETTER X
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1443 ㄓ zh 3113 12563 BOPOMOFO LETTER ZH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1444 ㄔ ch 3114 12564 BOPOMOFO LETTER CH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1445 ㄕ sh 3115 12565 BOPOMOFO LETTER SH
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1446 ㄖ r4 3116 12566 BOPOMOFO LETTER R
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1447 ㄗ z4 3117 12567 BOPOMOFO LETTER Z
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1448 ㄘ c4 3118 12568 BOPOMOFO LETTER C
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1449 ㄙ s4 3119 12569 BOPOMOFO LETTER S
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1450 ㄚ a4 311A 12570 BOPOMOFO LETTER A
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1451 ㄛ o4 311B 12571 BOPOMOFO LETTER O
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1452 ㄜ e4 311C 12572 BOPOMOFO LETTER E
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1453 ㄞ ai 311E 12574 BOPOMOFO LETTER AI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1454 ㄟ ei 311F 12575 BOPOMOFO LETTER EI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1455 ㄠ au 3120 12576 BOPOMOFO LETTER AU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1456 ㄡ ou 3121 12577 BOPOMOFO LETTER OU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1457 ㄢ an 3122 12578 BOPOMOFO LETTER AN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1458 ㄣ en 3123 12579 BOPOMOFO LETTER EN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1459 ㄤ aN 3124 12580 BOPOMOFO LETTER ANG
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1460 ㄥ eN 3125 12581 BOPOMOFO LETTER ENG
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1461 ㄦ er 3126 12582 BOPOMOFO LETTER ER
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1462 ㄧ i4 3127 12583 BOPOMOFO LETTER I
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1463 ㄨ u4 3128 12584 BOPOMOFO LETTER U
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1464 ㄩ iu 3129 12585 BOPOMOFO LETTER IU
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1465 ㄪ v4 312A 12586 BOPOMOFO LETTER V
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1466 ㄫ nG 312B 12587 BOPOMOFO LETTER NG
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1467 ㄬ gn 312C 12588 BOPOMOFO LETTER GN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1468 ㈠ 1c 3220 12832 PARENTHESIZED IDEOGRAPH ONE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1469 ㈡ 2c 3221 12833 PARENTHESIZED IDEOGRAPH TWO
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1470 ㈢ 3c 3222 12834 PARENTHESIZED IDEOGRAPH THREE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1471 ㈣ 4c 3223 12835 PARENTHESIZED IDEOGRAPH FOUR
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1472 ㈤ 5c 3224 12836 PARENTHESIZED IDEOGRAPH FIVE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1473 ㈥ 6c 3225 12837 PARENTHESIZED IDEOGRAPH SIX
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1474 ㈦ 7c 3226 12838 PARENTHESIZED IDEOGRAPH SEVEN
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1475 ㈧ 8c 3227 12839 PARENTHESIZED IDEOGRAPH EIGHT
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1476 ㈨ 9c 3228 12840 PARENTHESIZED IDEOGRAPH NINE
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1477 ff ff FB00 64256 LATIN SMALL LIGATURE FF
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1478 fi fi FB01 64257 LATIN SMALL LIGATURE FI
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1479 fl fl FB02 64258 LATIN SMALL LIGATURE FL
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1480 ſt ft FB05 64261 LATIN SMALL LIGATURE LONG S T
b6471224d2af Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
1481 st st FB06 64262 LATIN SMALL LIGATURE ST
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1482
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1483 vim:tw=78:ts=8:ft=help:norl: