annotate runtime/doc/digraph.txt @ 18486:9d887cad7315

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