Mercurial > vim
annotate src/digraph.c @ 23469:63263bd876c5 v8.2.2277
patch 8.2.2277: missing backslash
Commit: https://github.com/vim/vim/commit/9281c6cae4e1cec2c661487d761d407bad7c6ad6
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 2 17:06:16 2021 +0100
patch 8.2.2277: missing backslash
Problem: Missing backslash.
Solution: Add backslash.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 02 Jan 2021 17:15:03 +0100 |
parents | 1b23391fac7e |
children | c626fd34b66f |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9719
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * digraph.c: code for digraphs | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 | |
16 #if defined(FEAT_DIGRAPHS) || defined(PROTO) | |
17 | |
18 typedef int result_T; | |
19 | |
20 typedef struct digraph | |
21 { | |
22 char_u char1; | |
23 char_u char2; | |
24 result_T result; | |
25 } digr_T; | |
26 | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
27 static void printdigraph(digr_T *dp, result_T *previous); |
7 | 28 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
29 // digraphs added by the user |
1869 | 30 static garray_T user_digraphs = {0, 0, (int)sizeof(digr_T), 10, NULL}; |
7 | 31 |
32 /* | |
33 * Note: Characters marked with XX are not included literally, because some | |
34 * compilers cannot handle them (Amiga SAS/C is the most picky one). | |
35 */ | |
298 | 36 static digr_T digraphdefault[] = |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
37 |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
38 #ifdef HPUX_DIGRAPHS |
7 | 39 /* |
40 * different HPUX digraphs | |
41 */ | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
42 {{'A', '`', 161}, // ¡ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
43 {'A', '^', 162}, // ¢ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
44 {'E', '`', 163}, // £ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
45 {'E', '^', 164}, // ¤ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
46 {'E', '"', 165}, // ¥ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
47 {'I', '^', 166}, // ¦ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
48 {'I', '"', 167}, // § |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
49 {'\'', '\'', 168}, // ¨ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
50 {'`', '`', 169}, // © |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
51 {'^', '^', 170}, // ª |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
52 {'"', '"', 171}, // « |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
53 {'~', '~', 172}, // ¬ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
54 {'U', '`', 173}, // |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
55 {'U', '^', 174}, // ® |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
56 {'L', '=', 175}, // ¯ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
57 {'~', '_', 176}, // ° |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
58 {'Y', '\'', 177}, // ± |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
59 {'y', '\'', 178}, // ² |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
60 {'~', 'o', 179}, // ³ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
61 {'C', ',', 180}, // ´ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
62 {'c', ',', 181}, // µ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
63 {'N', '~', 182}, // ¶ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
64 {'n', '~', 183}, // · |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
65 {'~', '!', 184}, // ¸ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
66 {'~', '?', 185}, // ¹ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
67 {'o', 'x', 186}, // º |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
68 {'L', '-', 187}, // » |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
69 {'Y', '=', 188}, // ¼ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
70 {'p', 'p', 189}, // ½ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
71 {'f', 'l', 190}, // ¾ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
72 {'c', '|', 191}, // ¿ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
73 {'a', '^', 192}, // À |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
74 {'e', '^', 193}, // Á |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
75 {'o', '^', 194}, // Â |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
76 {'u', '^', 195}, // Ã |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
77 {'a', '\'', 196}, // Ä |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
78 {'e', '\'', 197}, // Å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
79 {'o', '\'', 198}, // Æ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
80 {'u', '\'', 199}, // Ç |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
81 {'a', '`', 200}, // È |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
82 {'e', '`', 201}, // É |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
83 {'o', '`', 202}, // Ê |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
84 {'u', '`', 203}, // Ë |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
85 {'a', '"', 204}, // Ì |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
86 {'e', '"', 205}, // Í |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
87 {'o', '"', 206}, // Î |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
88 {'u', '"', 207}, // Ï |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
89 {'A', 'o', 208}, // Ð |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
90 {'i', '^', 209}, // Ñ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
91 {'O', '/', 210}, // Ò |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
92 {'A', 'E', 211}, // Ó |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
93 {'a', 'o', 212}, // Ô |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
94 {'i', '\'', 213}, // Õ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
95 {'o', '/', 214}, // Ö |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
96 {'a', 'e', 215}, // × |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
97 {'A', '"', 216}, // Ø |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
98 {'i', '`', 217}, // Ù |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
99 {'O', '"', 218}, // Ú |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
100 {'U', '"', 219}, // Û |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
101 {'E', '\'', 220}, // Ü |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
102 {'i', '"', 221}, // Ý |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
103 {'s', 's', 222}, // Þ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
104 {'O', '^', 223}, // ß |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
105 {'A', '\'', 224}, // à |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
106 {'A', '~', 225}, // á |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
107 {'a', '~', 226}, // â |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
108 {'D', '-', 227}, // ã |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
109 {'d', '-', 228}, // ä |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
110 {'I', '\'', 229}, // å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
111 {'I', '`', 230}, // æ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
112 {'O', '\'', 231}, // ç |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
113 {'O', '`', 232}, // è |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
114 {'O', '~', 233}, // é |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
115 {'o', '~', 234}, // ê |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
116 {'S', '~', 235}, // ë |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
117 {'s', '~', 236}, // ì |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
118 {'U', '\'', 237}, // í |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
119 {'Y', '"', 238}, // î |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
120 {'y', '"', 239}, // ï |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
121 {'p', '-', 240}, // ð |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
122 {'p', '~', 241}, // ñ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
123 {'~', '.', 242}, // ò |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
124 {'j', 'u', 243}, // ó |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
125 {'P', 'p', 244}, // ô |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
126 {'3', '4', 245}, // õ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
127 {'-', '-', 246}, // ö |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
128 {'1', '4', 247}, // ÷ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
129 {'1', '2', 248}, // ø |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
130 {'a', '_', 249}, // ù |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
131 {'o', '_', 250}, // ú |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
132 {'<', '<', 251}, // û |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
133 {'x', 'x', 252}, // ü |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
134 {'>', '>', 253}, // ý |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
135 {'+', '-', 254}, // þ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
136 {'n', 'u', 255}, // x XX |
7 | 137 {NUL, NUL, NUL} |
138 }; | |
139 | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
140 #else // !HPUX_DIGRAPHS |
7 | 141 |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
142 # ifdef EBCDIC |
7 | 143 |
144 /* | |
145 * EBCDIC - ISO digraphs | |
146 * TODO: EBCDIC Table is Code-Page 1047 | |
147 */ | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
148 {{'a', '^', 66}, // â |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
149 {'a', '"', 67}, // ä |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
150 {'a', '`', 68}, // à |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
151 {'a', '\'', 69}, // á |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
152 {'a', '~', 70}, // ã |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
153 {'a', '@', 71}, // å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
154 {'a', 'a', 71}, // å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
155 {'c', ',', 72}, // ç |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
156 {'n', '~', 73}, // ñ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
157 {'c', '|', 74}, // ¢ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
158 {'e', '\'', 81}, // é |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
159 {'e', '^', 82}, // ê |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
160 {'e', '"', 83}, // ë |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
161 {'e', '`', 84}, // è |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
162 {'i', '\'', 85}, // í |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
163 {'i', '^', 86}, // î |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
164 {'i', '"', 87}, // ï |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
165 {'i', '`', 88}, // ì |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
166 {'s', 's', 89}, // ß |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
167 {'A', '^', 98}, // Â |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
168 {'A', '"', 99}, // Ä |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
169 {'A', '`', 100}, // À |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
170 {'A', '\'', 101}, // Á |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
171 {'A', '~', 102}, // Ã |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
172 {'A', '@', 103}, // Å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
173 {'A', 'A', 103}, // Å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
174 {'C', ',', 104}, // Ç |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
175 {'N', '~', 105}, // Ñ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
176 {'|', '|', 106}, // ¦ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
177 {'o', '/', 112}, // ø |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
178 {'E', '\'', 113}, // É |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
179 {'E', '^', 114}, // Ê |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
180 {'E', '"', 115}, // Ë |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
181 {'E', '`', 116}, // È |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
182 {'I', '\'', 117}, // Í |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
183 {'I', '^', 118}, // Î |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
184 {'I', '"', 119}, // Ï |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
185 {'I', '`', 120}, // Ì |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
186 {'O', '/', 128}, // 0/ XX |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
187 {'<', '<', 138}, // « |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
188 {'>', '>', 139}, // » |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
189 {'d', '-', 140}, // ð |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
190 {'y', '\'', 141}, // ý |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
191 {'i', 'p', 142}, // þ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
192 {'+', '-', 143}, // ± |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
193 {'~', 'o', 144}, // ° |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
194 {'a', '-', 154}, // ª |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
195 {'o', '-', 155}, // º |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
196 {'a', 'e', 156}, // æ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
197 {',', ',', 157}, // , XX |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
198 {'A', 'E', 158}, // Æ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
199 {'o', 'x', 159}, // ¤ - currency symbol in ISO 8859-1 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
200 {'e', '=', 159}, // ¤ - euro symbol in ISO 8859-15 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
201 {'E', 'u', 159}, // ¤ - euro symbol in ISO 8859-15 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
202 {'j', 'u', 160}, // µ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
203 {'y', '"', 167}, // x XX |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
204 {'~', '!', 170}, // ¡ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
205 {'~', '?', 171}, // ¿ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
206 {'D', '-', 172}, // Ð |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
207 {'I', 'p', 174}, // Þ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
208 {'r', 'O', 175}, // ® |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
209 {'-', ',', 176}, // ¬ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
210 {'$', '$', 177}, // £ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
211 {'Y', '-', 178}, // ¥ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
212 {'~', '.', 179}, // · |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
213 {'c', 'O', 180}, // © |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
214 {'p', 'a', 181}, // § |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
215 {'p', 'p', 182}, // ¶ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
216 {'1', '4', 183}, // ¼ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
217 {'1', '2', 184}, // ½ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
218 {'3', '4', 185}, // ¾ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
219 {'Y', '\'', 186}, // Ý |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
220 {'"', '"', 187}, // ¨ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
221 {'-', '=', 188}, // ¯ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
222 {'\'', '\'', 190}, // ´ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
223 {'O', 'E', 191}, // × - OE in ISO 8859-15 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
224 {'/', '\\', 191}, // × - multiplication symbol in ISO 8859-1 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
225 {'-', '-', 202}, // |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
226 {'o', '^', 203}, // ô |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
227 {'o', '"', 204}, // ö |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
228 {'o', '`', 205}, // ò |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
229 {'o', '\'', 206}, // ó |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
230 {'o', '~', 207}, // õ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
231 {'1', '1', 218}, // ¹ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
232 {'u', '^', 219}, // û |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
233 {'u', '"', 220}, // ü |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
234 {'u', '`', 221}, // ù |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
235 {'u', '\'', 222}, // ú |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
236 {':', '-', 225}, // ÷ - division symbol in ISO 8859-1 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
237 {'o', 'e', 225}, // ÷ - oe in ISO 8859-15 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
238 {'2', '2', 234}, // ² |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
239 {'O', '^', 235}, // Ô |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
240 {'O', '"', 236}, // Ö |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
241 {'O', '`', 237}, // Ò |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
242 {'O', '\'', 238}, // Ó |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
243 {'O', '~', 239}, // Õ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
244 {'3', '3', 250}, // ³ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
245 {'U', '^', 251}, // Û |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
246 {'U', '"', 252}, // Ü |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
247 {'U', '`', 253}, // Ù |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
248 {'U', '\'', 254}, // Ú |
7 | 249 {NUL, NUL, NUL} |
250 }; | |
251 | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
252 # else // EBCDIC |
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
253 # ifdef OLD_DIGRAPHS |
7 | 254 |
255 /* | |
256 * digraphs compatible with Vim 5.x | |
257 */ | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
258 {{'~', '!', 161}, // ¡ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
259 {'c', '|', 162}, // ¢ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
260 {'$', '$', 163}, // £ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
261 {'o', 'x', 164}, // ¤ - currency symbol in ISO 8859-1 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
262 {'e', '=', 164}, // ¤ - euro symbol in ISO 8859-15 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
263 {'Y', '-', 165}, // ¥ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
264 {'|', '|', 166}, // ¦ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
265 {'p', 'a', 167}, // § |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
266 {'"', '"', 168}, // ¨ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
267 {'c', 'O', 169}, // © |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
268 {'a', '-', 170}, // ª |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
269 {'<', '<', 171}, // « |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
270 {'-', ',', 172}, // ¬ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
271 {'-', '-', 173}, // |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
272 {'r', 'O', 174}, // ® |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
273 {'-', '=', 175}, // ¯ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
274 {'~', 'o', 176}, // ° |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
275 {'+', '-', 177}, // ± |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
276 {'2', '2', 178}, // ² |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
277 {'3', '3', 179}, // ³ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
278 {'\'', '\'', 180}, // ´ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
279 {'j', 'u', 181}, // µ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
280 {'p', 'p', 182}, // ¶ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
281 {'~', '.', 183}, // · |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
282 {',', ',', 184}, // ¸ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
283 {'1', '1', 185}, // ¹ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
284 {'o', '-', 186}, // º |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
285 {'>', '>', 187}, // » |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
286 {'1', '4', 188}, // ¼ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
287 {'1', '2', 189}, // ½ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
288 {'3', '4', 190}, // ¾ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
289 {'~', '?', 191}, // ¿ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
290 {'A', '`', 192}, // À |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
291 {'A', '\'', 193}, // Á |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
292 {'A', '^', 194}, // Â |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
293 {'A', '~', 195}, // Ã |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
294 {'A', '"', 196}, // Ä |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
295 {'A', '@', 197}, // Å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
296 {'A', 'A', 197}, // Å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
297 {'A', 'E', 198}, // Æ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
298 {'C', ',', 199}, // Ç |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
299 {'E', '`', 200}, // È |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
300 {'E', '\'', 201}, // É |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
301 {'E', '^', 202}, // Ê |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
302 {'E', '"', 203}, // Ë |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
303 {'I', '`', 204}, // Ì |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
304 {'I', '\'', 205}, // Í |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
305 {'I', '^', 206}, // Î |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
306 {'I', '"', 207}, // Ï |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
307 {'D', '-', 208}, // Ð |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
308 {'N', '~', 209}, // Ñ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
309 {'O', '`', 210}, // Ò |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
310 {'O', '\'', 211}, // Ó |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
311 {'O', '^', 212}, // Ô |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
312 {'O', '~', 213}, // Õ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
313 {'O', '"', 214}, // Ö |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
314 {'/', '\\', 215}, // × - multiplication symbol in ISO 8859-1 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
315 {'O', 'E', 215}, // × - OE in ISO 8859-15 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
316 {'O', '/', 216}, // Ø |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
317 {'U', '`', 217}, // Ù |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
318 {'U', '\'', 218}, // Ú |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
319 {'U', '^', 219}, // Û |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
320 {'U', '"', 220}, // Ü |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
321 {'Y', '\'', 221}, // Ý |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
322 {'I', 'p', 222}, // Þ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
323 {'s', 's', 223}, // ß |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
324 {'a', '`', 224}, // à |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
325 {'a', '\'', 225}, // á |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
326 {'a', '^', 226}, // â |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
327 {'a', '~', 227}, // ã |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
328 {'a', '"', 228}, // ä |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
329 {'a', '@', 229}, // å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
330 {'a', 'a', 229}, // å |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
331 {'a', 'e', 230}, // æ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
332 {'c', ',', 231}, // ç |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
333 {'e', '`', 232}, // è |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
334 {'e', '\'', 233}, // é |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
335 {'e', '^', 234}, // ê |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
336 {'e', '"', 235}, // ë |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
337 {'i', '`', 236}, // ì |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
338 {'i', '\'', 237}, // í |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
339 {'i', '^', 238}, // î |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
340 {'i', '"', 239}, // ï |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
341 {'d', '-', 240}, // ð |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
342 {'n', '~', 241}, // ñ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
343 {'o', '`', 242}, // ò |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
344 {'o', '\'', 243}, // ó |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
345 {'o', '^', 244}, // ô |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
346 {'o', '~', 245}, // õ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
347 {'o', '"', 246}, // ö |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
348 {':', '-', 247}, // ÷ - division symbol in ISO 8859-1 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
349 {'o', 'e', 247}, // ÷ - oe in ISO 8859-15 |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
350 {'o', '/', 248}, // ø |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
351 {'u', '`', 249}, // ù |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
352 {'u', '\'', 250}, // ú |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
353 {'u', '^', 251}, // û |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
354 {'u', '"', 252}, // ü |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
355 {'y', '\'', 253}, // ý |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
356 {'i', 'p', 254}, // þ |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
357 {'y', '"', 255}, // x XX |
7 | 358 {NUL, NUL, NUL} |
359 }; | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
360 # else // OLD_DIGRAPHS |
7 | 361 |
362 /* | |
363 * digraphs for Unicode from RFC1345 | |
364 * (also work for ISO-8859-1 aka latin1) | |
365 */ | |
366 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
367 {'N', 'U', 0x0a}, // LF for NUL |
7 | 368 {'S', 'H', 0x01}, |
369 {'S', 'X', 0x02}, | |
370 {'E', 'X', 0x03}, | |
371 {'E', 'T', 0x04}, | |
372 {'E', 'Q', 0x05}, | |
373 {'A', 'K', 0x06}, | |
374 {'B', 'L', 0x07}, | |
375 {'B', 'S', 0x08}, | |
376 {'H', 'T', 0x09}, | |
377 {'L', 'F', 0x0a}, | |
378 {'V', 'T', 0x0b}, | |
379 {'F', 'F', 0x0c}, | |
380 {'C', 'R', 0x0d}, | |
381 {'S', 'O', 0x0e}, | |
382 {'S', 'I', 0x0f}, | |
383 {'D', 'L', 0x10}, | |
384 {'D', '1', 0x11}, | |
385 {'D', '2', 0x12}, | |
386 {'D', '3', 0x13}, | |
387 {'D', '4', 0x14}, | |
388 {'N', 'K', 0x15}, | |
389 {'S', 'Y', 0x16}, | |
390 {'E', 'B', 0x17}, | |
391 {'C', 'N', 0x18}, | |
392 {'E', 'M', 0x19}, | |
393 {'S', 'B', 0x1a}, | |
394 {'E', 'C', 0x1b}, | |
395 {'F', 'S', 0x1c}, | |
396 {'G', 'S', 0x1d}, | |
397 {'R', 'S', 0x1e}, | |
398 {'U', 'S', 0x1f}, | |
399 {'S', 'P', 0x20}, | |
400 {'N', 'b', 0x23}, | |
401 {'D', 'O', 0x24}, | |
402 {'A', 't', 0x40}, | |
403 {'<', '(', 0x5b}, | |
404 {'/', '/', 0x5c}, | |
405 {')', '>', 0x5d}, | |
406 {'\'', '>', 0x5e}, | |
407 {'\'', '!', 0x60}, | |
408 {'(', '!', 0x7b}, | |
409 {'!', '!', 0x7c}, | |
410 {'!', ')', 0x7d}, | |
411 {'\'', '?', 0x7e}, | |
412 {'D', 'T', 0x7f}, | |
413 {'P', 'A', 0x80}, | |
414 {'H', 'O', 0x81}, | |
415 {'B', 'H', 0x82}, | |
416 {'N', 'H', 0x83}, | |
417 {'I', 'N', 0x84}, | |
418 {'N', 'L', 0x85}, | |
419 {'S', 'A', 0x86}, | |
420 {'E', 'S', 0x87}, | |
421 {'H', 'S', 0x88}, | |
422 {'H', 'J', 0x89}, | |
423 {'V', 'S', 0x8a}, | |
424 {'P', 'D', 0x8b}, | |
425 {'P', 'U', 0x8c}, | |
426 {'R', 'I', 0x8d}, | |
427 {'S', '2', 0x8e}, | |
428 {'S', '3', 0x8f}, | |
429 {'D', 'C', 0x90}, | |
430 {'P', '1', 0x91}, | |
431 {'P', '2', 0x92}, | |
432 {'T', 'S', 0x93}, | |
433 {'C', 'C', 0x94}, | |
434 {'M', 'W', 0x95}, | |
435 {'S', 'G', 0x96}, | |
436 {'E', 'G', 0x97}, | |
437 {'S', 'S', 0x98}, | |
438 {'G', 'C', 0x99}, | |
439 {'S', 'C', 0x9a}, | |
440 {'C', 'I', 0x9b}, | |
441 {'S', 'T', 0x9c}, | |
442 {'O', 'C', 0x9d}, | |
443 {'P', 'M', 0x9e}, | |
444 {'A', 'C', 0x9f}, | |
445 {'N', 'S', 0xa0}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
446 # define DG_START_LATIN 0xa1 |
7 | 447 {'!', 'I', 0xa1}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
448 {'~', '!', 0xa1}, // ¡ Vim 5.x compatible |
7 | 449 {'C', 't', 0xa2}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
450 {'c', '|', 0xa2}, // ¢ Vim 5.x compatible |
7 | 451 {'P', 'd', 0xa3}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
452 {'$', '$', 0xa3}, // £ Vim 5.x compatible |
7 | 453 {'C', 'u', 0xa4}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
454 {'o', 'x', 0xa4}, // ¤ Vim 5.x compatible |
7 | 455 {'Y', 'e', 0xa5}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
456 {'Y', '-', 0xa5}, // ¥ Vim 5.x compatible |
7 | 457 {'B', 'B', 0xa6}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
458 {'|', '|', 0xa6}, // ¦ Vim 5.x compatible |
7 | 459 {'S', 'E', 0xa7}, |
460 {'\'', ':', 0xa8}, | |
461 {'C', 'o', 0xa9}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
462 {'c', 'O', 0xa9}, // © Vim 5.x compatible |
7 | 463 {'-', 'a', 0xaa}, |
464 {'<', '<', 0xab}, | |
465 {'N', 'O', 0xac}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
466 {'-', ',', 0xac}, // ¬ Vim 5.x compatible |
7 | 467 {'-', '-', 0xad}, |
468 {'R', 'g', 0xae}, | |
469 {'\'', 'm', 0xaf}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
470 {'-', '=', 0xaf}, // ¯ Vim 5.x compatible |
7 | 471 {'D', 'G', 0xb0}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
472 {'~', 'o', 0xb0}, // ° Vim 5.x compatible |
7 | 473 {'+', '-', 0xb1}, |
474 {'2', 'S', 0xb2}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
475 {'2', '2', 0xb2}, // ² Vim 5.x compatible |
7 | 476 {'3', 'S', 0xb3}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
477 {'3', '3', 0xb3}, // ³ Vim 5.x compatible |
7 | 478 {'\'', '\'', 0xb4}, |
479 {'M', 'y', 0xb5}, | |
480 {'P', 'I', 0xb6}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
481 {'p', 'p', 0xb6}, // ¶ Vim 5.x compatible |
7 | 482 {'.', 'M', 0xb7}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
483 {'~', '.', 0xb7}, // · Vim 5.x compatible |
7 | 484 {'\'', ',', 0xb8}, |
485 {'1', 'S', 0xb9}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
486 {'1', '1', 0xb9}, // ¹ Vim 5.x compatible |
7 | 487 {'-', 'o', 0xba}, |
488 {'>', '>', 0xbb}, | |
489 {'1', '4', 0xbc}, | |
490 {'1', '2', 0xbd}, | |
491 {'3', '4', 0xbe}, | |
492 {'?', 'I', 0xbf}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
493 {'~', '?', 0xbf}, // ¿ Vim 5.x compatible |
7 | 494 {'A', '!', 0xc0}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
495 {'A', '`', 0xc0}, // À Vim 5.x compatible |
7 | 496 {'A', '\'', 0xc1}, |
497 {'A', '>', 0xc2}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
498 {'A', '^', 0xc2}, // Â Vim 5.x compatible |
7 | 499 {'A', '?', 0xc3}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
500 {'A', '~', 0xc3}, // Ã Vim 5.x compatible |
7 | 501 {'A', ':', 0xc4}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
502 {'A', '"', 0xc4}, // Ä Vim 5.x compatible |
7 | 503 {'A', 'A', 0xc5}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
504 {'A', '@', 0xc5}, // Å Vim 5.x compatible |
7 | 505 {'A', 'E', 0xc6}, |
506 {'C', ',', 0xc7}, | |
507 {'E', '!', 0xc8}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
508 {'E', '`', 0xc8}, // È Vim 5.x compatible |
7 | 509 {'E', '\'', 0xc9}, |
510 {'E', '>', 0xca}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
511 {'E', '^', 0xca}, // Ê Vim 5.x compatible |
7 | 512 {'E', ':', 0xcb}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
513 {'E', '"', 0xcb}, // Ë Vim 5.x compatible |
7 | 514 {'I', '!', 0xcc}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
515 {'I', '`', 0xcc}, // Ì Vim 5.x compatible |
7 | 516 {'I', '\'', 0xcd}, |
517 {'I', '>', 0xce}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
518 {'I', '^', 0xce}, // Î Vim 5.x compatible |
7 | 519 {'I', ':', 0xcf}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
520 {'I', '"', 0xcf}, // Ï Vim 5.x compatible |
7 | 521 {'D', '-', 0xd0}, |
522 {'N', '?', 0xd1}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
523 {'N', '~', 0xd1}, // Ñ Vim 5.x compatible |
7 | 524 {'O', '!', 0xd2}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
525 {'O', '`', 0xd2}, // Ò Vim 5.x compatible |
7 | 526 {'O', '\'', 0xd3}, |
527 {'O', '>', 0xd4}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
528 {'O', '^', 0xd4}, // Ô Vim 5.x compatible |
7 | 529 {'O', '?', 0xd5}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
530 {'O', '~', 0xd5}, // Õ Vim 5.x compatible |
7 | 531 {'O', ':', 0xd6}, |
532 {'*', 'X', 0xd7}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
533 {'/', '\\', 0xd7}, // × Vim 5.x compatible |
7 | 534 {'O', '/', 0xd8}, |
535 {'U', '!', 0xd9}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
536 {'U', '`', 0xd9}, // Ù Vim 5.x compatible |
7 | 537 {'U', '\'', 0xda}, |
538 {'U', '>', 0xdb}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
539 {'U', '^', 0xdb}, // Û Vim 5.x compatible |
7 | 540 {'U', ':', 0xdc}, |
541 {'Y', '\'', 0xdd}, | |
542 {'T', 'H', 0xde}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
543 {'I', 'p', 0xde}, // Þ Vim 5.x compatible |
7 | 544 {'s', 's', 0xdf}, |
545 {'a', '!', 0xe0}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
546 {'a', '`', 0xe0}, // à Vim 5.x compatible |
7 | 547 {'a', '\'', 0xe1}, |
548 {'a', '>', 0xe2}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
549 {'a', '^', 0xe2}, // â Vim 5.x compatible |
7 | 550 {'a', '?', 0xe3}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
551 {'a', '~', 0xe3}, // ã Vim 5.x compatible |
7 | 552 {'a', ':', 0xe4}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
553 {'a', '"', 0xe4}, // ä Vim 5.x compatible |
7 | 554 {'a', 'a', 0xe5}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
555 {'a', '@', 0xe5}, // å Vim 5.x compatible |
7 | 556 {'a', 'e', 0xe6}, |
557 {'c', ',', 0xe7}, | |
558 {'e', '!', 0xe8}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
559 {'e', '`', 0xe8}, // è Vim 5.x compatible |
7 | 560 {'e', '\'', 0xe9}, |
561 {'e', '>', 0xea}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
562 {'e', '^', 0xea}, // ê Vim 5.x compatible |
7 | 563 {'e', ':', 0xeb}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
564 {'e', '"', 0xeb}, // ë Vim 5.x compatible |
7 | 565 {'i', '!', 0xec}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
566 {'i', '`', 0xec}, // ì Vim 5.x compatible |
7 | 567 {'i', '\'', 0xed}, |
568 {'i', '>', 0xee}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
569 {'i', '^', 0xee}, // î Vim 5.x compatible |
7 | 570 {'i', ':', 0xef}, |
571 {'d', '-', 0xf0}, | |
572 {'n', '?', 0xf1}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
573 {'n', '~', 0xf1}, // ñ Vim 5.x compatible |
7 | 574 {'o', '!', 0xf2}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
575 {'o', '`', 0xf2}, // ò Vim 5.x compatible |
7 | 576 {'o', '\'', 0xf3}, |
577 {'o', '>', 0xf4}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
578 {'o', '^', 0xf4}, // ô Vim 5.x compatible |
7 | 579 {'o', '?', 0xf5}, |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
580 {'o', '~', 0xf5}, // õ Vim 5.x compatible |
7 | 581 {'o', ':', 0xf6}, |
582 {'-', ':', 0xf7}, | |
583 {'o', '/', 0xf8}, | |
584 {'u', '!', 0xf9}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
585 {'u', '`', 0xf9}, // ù Vim 5.x compatible |
7 | 586 {'u', '\'', 0xfa}, |
587 {'u', '>', 0xfb}, | |
17853
c90ca5b9fc0d
patch 8.1.1923: some source files are not in a normal encoding
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
588 {'u', '^', 0xfb}, // û Vim 5.x compatible |
7 | 589 {'u', ':', 0xfc}, |
590 {'y', '\'', 0xfd}, | |
591 {'t', 'h', 0xfe}, | |
592 {'y', ':', 0xff}, | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
593 {'y', '"', 0xff}, // x XX Vim 5.x compatible |
7 | 594 |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
595 # define USE_UNICODE_DIGRAPHS |
7 | 596 |
597 {'A', '-', 0x0100}, | |
598 {'a', '-', 0x0101}, | |
599 {'A', '(', 0x0102}, | |
600 {'a', '(', 0x0103}, | |
601 {'A', ';', 0x0104}, | |
602 {'a', ';', 0x0105}, | |
603 {'C', '\'', 0x0106}, | |
604 {'c', '\'', 0x0107}, | |
605 {'C', '>', 0x0108}, | |
606 {'c', '>', 0x0109}, | |
607 {'C', '.', 0x010a}, | |
608 {'c', '.', 0x010b}, | |
609 {'C', '<', 0x010c}, | |
610 {'c', '<', 0x010d}, | |
611 {'D', '<', 0x010e}, | |
612 {'d', '<', 0x010f}, | |
613 {'D', '/', 0x0110}, | |
614 {'d', '/', 0x0111}, | |
615 {'E', '-', 0x0112}, | |
616 {'e', '-', 0x0113}, | |
617 {'E', '(', 0x0114}, | |
618 {'e', '(', 0x0115}, | |
619 {'E', '.', 0x0116}, | |
620 {'e', '.', 0x0117}, | |
621 {'E', ';', 0x0118}, | |
622 {'e', ';', 0x0119}, | |
623 {'E', '<', 0x011a}, | |
624 {'e', '<', 0x011b}, | |
625 {'G', '>', 0x011c}, | |
626 {'g', '>', 0x011d}, | |
627 {'G', '(', 0x011e}, | |
628 {'g', '(', 0x011f}, | |
629 {'G', '.', 0x0120}, | |
630 {'g', '.', 0x0121}, | |
631 {'G', ',', 0x0122}, | |
632 {'g', ',', 0x0123}, | |
633 {'H', '>', 0x0124}, | |
634 {'h', '>', 0x0125}, | |
635 {'H', '/', 0x0126}, | |
636 {'h', '/', 0x0127}, | |
637 {'I', '?', 0x0128}, | |
638 {'i', '?', 0x0129}, | |
639 {'I', '-', 0x012a}, | |
640 {'i', '-', 0x012b}, | |
641 {'I', '(', 0x012c}, | |
642 {'i', '(', 0x012d}, | |
643 {'I', ';', 0x012e}, | |
644 {'i', ';', 0x012f}, | |
645 {'I', '.', 0x0130}, | |
646 {'i', '.', 0x0131}, | |
647 {'I', 'J', 0x0132}, | |
648 {'i', 'j', 0x0133}, | |
649 {'J', '>', 0x0134}, | |
650 {'j', '>', 0x0135}, | |
651 {'K', ',', 0x0136}, | |
652 {'k', ',', 0x0137}, | |
653 {'k', 'k', 0x0138}, | |
654 {'L', '\'', 0x0139}, | |
655 {'l', '\'', 0x013a}, | |
656 {'L', ',', 0x013b}, | |
657 {'l', ',', 0x013c}, | |
658 {'L', '<', 0x013d}, | |
659 {'l', '<', 0x013e}, | |
660 {'L', '.', 0x013f}, | |
661 {'l', '.', 0x0140}, | |
662 {'L', '/', 0x0141}, | |
663 {'l', '/', 0x0142}, | |
664 {'N', '\'', 0x0143}, | |
665 {'n', '\'', 0x0144}, | |
666 {'N', ',', 0x0145}, | |
667 {'n', ',', 0x0146}, | |
668 {'N', '<', 0x0147}, | |
669 {'n', '<', 0x0148}, | |
670 {'\'', 'n', 0x0149}, | |
671 {'N', 'G', 0x014a}, | |
672 {'n', 'g', 0x014b}, | |
673 {'O', '-', 0x014c}, | |
674 {'o', '-', 0x014d}, | |
675 {'O', '(', 0x014e}, | |
676 {'o', '(', 0x014f}, | |
677 {'O', '"', 0x0150}, | |
678 {'o', '"', 0x0151}, | |
679 {'O', 'E', 0x0152}, | |
680 {'o', 'e', 0x0153}, | |
681 {'R', '\'', 0x0154}, | |
682 {'r', '\'', 0x0155}, | |
683 {'R', ',', 0x0156}, | |
684 {'r', ',', 0x0157}, | |
685 {'R', '<', 0x0158}, | |
686 {'r', '<', 0x0159}, | |
687 {'S', '\'', 0x015a}, | |
688 {'s', '\'', 0x015b}, | |
689 {'S', '>', 0x015c}, | |
690 {'s', '>', 0x015d}, | |
691 {'S', ',', 0x015e}, | |
692 {'s', ',', 0x015f}, | |
693 {'S', '<', 0x0160}, | |
694 {'s', '<', 0x0161}, | |
695 {'T', ',', 0x0162}, | |
696 {'t', ',', 0x0163}, | |
697 {'T', '<', 0x0164}, | |
698 {'t', '<', 0x0165}, | |
699 {'T', '/', 0x0166}, | |
700 {'t', '/', 0x0167}, | |
701 {'U', '?', 0x0168}, | |
702 {'u', '?', 0x0169}, | |
703 {'U', '-', 0x016a}, | |
704 {'u', '-', 0x016b}, | |
705 {'U', '(', 0x016c}, | |
706 {'u', '(', 0x016d}, | |
707 {'U', '0', 0x016e}, | |
708 {'u', '0', 0x016f}, | |
709 {'U', '"', 0x0170}, | |
710 {'u', '"', 0x0171}, | |
711 {'U', ';', 0x0172}, | |
712 {'u', ';', 0x0173}, | |
713 {'W', '>', 0x0174}, | |
714 {'w', '>', 0x0175}, | |
715 {'Y', '>', 0x0176}, | |
716 {'y', '>', 0x0177}, | |
717 {'Y', ':', 0x0178}, | |
718 {'Z', '\'', 0x0179}, | |
719 {'z', '\'', 0x017a}, | |
720 {'Z', '.', 0x017b}, | |
721 {'z', '.', 0x017c}, | |
722 {'Z', '<', 0x017d}, | |
723 {'z', '<', 0x017e}, | |
724 {'O', '9', 0x01a0}, | |
725 {'o', '9', 0x01a1}, | |
726 {'O', 'I', 0x01a2}, | |
727 {'o', 'i', 0x01a3}, | |
728 {'y', 'r', 0x01a6}, | |
729 {'U', '9', 0x01af}, | |
730 {'u', '9', 0x01b0}, | |
731 {'Z', '/', 0x01b5}, | |
732 {'z', '/', 0x01b6}, | |
733 {'E', 'D', 0x01b7}, | |
734 {'A', '<', 0x01cd}, | |
735 {'a', '<', 0x01ce}, | |
736 {'I', '<', 0x01cf}, | |
737 {'i', '<', 0x01d0}, | |
738 {'O', '<', 0x01d1}, | |
739 {'o', '<', 0x01d2}, | |
740 {'U', '<', 0x01d3}, | |
741 {'u', '<', 0x01d4}, | |
742 {'A', '1', 0x01de}, | |
743 {'a', '1', 0x01df}, | |
744 {'A', '7', 0x01e0}, | |
745 {'a', '7', 0x01e1}, | |
746 {'A', '3', 0x01e2}, | |
747 {'a', '3', 0x01e3}, | |
748 {'G', '/', 0x01e4}, | |
749 {'g', '/', 0x01e5}, | |
750 {'G', '<', 0x01e6}, | |
751 {'g', '<', 0x01e7}, | |
752 {'K', '<', 0x01e8}, | |
753 {'k', '<', 0x01e9}, | |
754 {'O', ';', 0x01ea}, | |
755 {'o', ';', 0x01eb}, | |
756 {'O', '1', 0x01ec}, | |
757 {'o', '1', 0x01ed}, | |
758 {'E', 'Z', 0x01ee}, | |
759 {'e', 'z', 0x01ef}, | |
760 {'j', '<', 0x01f0}, | |
761 {'G', '\'', 0x01f4}, | |
762 {'g', '\'', 0x01f5}, | |
763 {';', 'S', 0x02bf}, | |
764 {'\'', '<', 0x02c7}, | |
765 {'\'', '(', 0x02d8}, | |
766 {'\'', '.', 0x02d9}, | |
767 {'\'', '0', 0x02da}, | |
768 {'\'', ';', 0x02db}, | |
769 {'\'', '"', 0x02dd}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
770 # define DG_START_GREEK 0x0386 |
7 | 771 {'A', '%', 0x0386}, |
772 {'E', '%', 0x0388}, | |
773 {'Y', '%', 0x0389}, | |
774 {'I', '%', 0x038a}, | |
775 {'O', '%', 0x038c}, | |
776 {'U', '%', 0x038e}, | |
777 {'W', '%', 0x038f}, | |
778 {'i', '3', 0x0390}, | |
779 {'A', '*', 0x0391}, | |
780 {'B', '*', 0x0392}, | |
781 {'G', '*', 0x0393}, | |
782 {'D', '*', 0x0394}, | |
783 {'E', '*', 0x0395}, | |
784 {'Z', '*', 0x0396}, | |
785 {'Y', '*', 0x0397}, | |
786 {'H', '*', 0x0398}, | |
787 {'I', '*', 0x0399}, | |
788 {'K', '*', 0x039a}, | |
789 {'L', '*', 0x039b}, | |
790 {'M', '*', 0x039c}, | |
791 {'N', '*', 0x039d}, | |
792 {'C', '*', 0x039e}, | |
793 {'O', '*', 0x039f}, | |
794 {'P', '*', 0x03a0}, | |
795 {'R', '*', 0x03a1}, | |
796 {'S', '*', 0x03a3}, | |
797 {'T', '*', 0x03a4}, | |
798 {'U', '*', 0x03a5}, | |
799 {'F', '*', 0x03a6}, | |
800 {'X', '*', 0x03a7}, | |
801 {'Q', '*', 0x03a8}, | |
802 {'W', '*', 0x03a9}, | |
803 {'J', '*', 0x03aa}, | |
804 {'V', '*', 0x03ab}, | |
805 {'a', '%', 0x03ac}, | |
806 {'e', '%', 0x03ad}, | |
807 {'y', '%', 0x03ae}, | |
808 {'i', '%', 0x03af}, | |
809 {'u', '3', 0x03b0}, | |
810 {'a', '*', 0x03b1}, | |
811 {'b', '*', 0x03b2}, | |
812 {'g', '*', 0x03b3}, | |
813 {'d', '*', 0x03b4}, | |
814 {'e', '*', 0x03b5}, | |
815 {'z', '*', 0x03b6}, | |
816 {'y', '*', 0x03b7}, | |
817 {'h', '*', 0x03b8}, | |
818 {'i', '*', 0x03b9}, | |
819 {'k', '*', 0x03ba}, | |
820 {'l', '*', 0x03bb}, | |
821 {'m', '*', 0x03bc}, | |
822 {'n', '*', 0x03bd}, | |
823 {'c', '*', 0x03be}, | |
824 {'o', '*', 0x03bf}, | |
825 {'p', '*', 0x03c0}, | |
826 {'r', '*', 0x03c1}, | |
827 {'*', 's', 0x03c2}, | |
828 {'s', '*', 0x03c3}, | |
829 {'t', '*', 0x03c4}, | |
830 {'u', '*', 0x03c5}, | |
831 {'f', '*', 0x03c6}, | |
832 {'x', '*', 0x03c7}, | |
833 {'q', '*', 0x03c8}, | |
834 {'w', '*', 0x03c9}, | |
835 {'j', '*', 0x03ca}, | |
836 {'v', '*', 0x03cb}, | |
837 {'o', '%', 0x03cc}, | |
838 {'u', '%', 0x03cd}, | |
839 {'w', '%', 0x03ce}, | |
840 {'\'', 'G', 0x03d8}, | |
841 {',', 'G', 0x03d9}, | |
842 {'T', '3', 0x03da}, | |
843 {'t', '3', 0x03db}, | |
844 {'M', '3', 0x03dc}, | |
845 {'m', '3', 0x03dd}, | |
846 {'K', '3', 0x03de}, | |
847 {'k', '3', 0x03df}, | |
848 {'P', '3', 0x03e0}, | |
849 {'p', '3', 0x03e1}, | |
850 {'\'', '%', 0x03f4}, | |
851 {'j', '3', 0x03f5}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
852 # define DG_START_CYRILLIC 0x0401 |
7 | 853 {'I', 'O', 0x0401}, |
854 {'D', '%', 0x0402}, | |
855 {'G', '%', 0x0403}, | |
856 {'I', 'E', 0x0404}, | |
857 {'D', 'S', 0x0405}, | |
858 {'I', 'I', 0x0406}, | |
859 {'Y', 'I', 0x0407}, | |
860 {'J', '%', 0x0408}, | |
861 {'L', 'J', 0x0409}, | |
862 {'N', 'J', 0x040a}, | |
863 {'T', 's', 0x040b}, | |
864 {'K', 'J', 0x040c}, | |
865 {'V', '%', 0x040e}, | |
866 {'D', 'Z', 0x040f}, | |
867 {'A', '=', 0x0410}, | |
868 {'B', '=', 0x0411}, | |
869 {'V', '=', 0x0412}, | |
870 {'G', '=', 0x0413}, | |
871 {'D', '=', 0x0414}, | |
872 {'E', '=', 0x0415}, | |
873 {'Z', '%', 0x0416}, | |
874 {'Z', '=', 0x0417}, | |
875 {'I', '=', 0x0418}, | |
876 {'J', '=', 0x0419}, | |
877 {'K', '=', 0x041a}, | |
878 {'L', '=', 0x041b}, | |
879 {'M', '=', 0x041c}, | |
880 {'N', '=', 0x041d}, | |
881 {'O', '=', 0x041e}, | |
882 {'P', '=', 0x041f}, | |
883 {'R', '=', 0x0420}, | |
884 {'S', '=', 0x0421}, | |
885 {'T', '=', 0x0422}, | |
886 {'U', '=', 0x0423}, | |
887 {'F', '=', 0x0424}, | |
888 {'H', '=', 0x0425}, | |
889 {'C', '=', 0x0426}, | |
890 {'C', '%', 0x0427}, | |
891 {'S', '%', 0x0428}, | |
892 {'S', 'c', 0x0429}, | |
893 {'=', '"', 0x042a}, | |
894 {'Y', '=', 0x042b}, | |
895 {'%', '"', 0x042c}, | |
896 {'J', 'E', 0x042d}, | |
897 {'J', 'U', 0x042e}, | |
898 {'J', 'A', 0x042f}, | |
899 {'a', '=', 0x0430}, | |
900 {'b', '=', 0x0431}, | |
901 {'v', '=', 0x0432}, | |
902 {'g', '=', 0x0433}, | |
903 {'d', '=', 0x0434}, | |
904 {'e', '=', 0x0435}, | |
905 {'z', '%', 0x0436}, | |
906 {'z', '=', 0x0437}, | |
907 {'i', '=', 0x0438}, | |
908 {'j', '=', 0x0439}, | |
909 {'k', '=', 0x043a}, | |
910 {'l', '=', 0x043b}, | |
911 {'m', '=', 0x043c}, | |
912 {'n', '=', 0x043d}, | |
913 {'o', '=', 0x043e}, | |
914 {'p', '=', 0x043f}, | |
915 {'r', '=', 0x0440}, | |
916 {'s', '=', 0x0441}, | |
917 {'t', '=', 0x0442}, | |
918 {'u', '=', 0x0443}, | |
919 {'f', '=', 0x0444}, | |
920 {'h', '=', 0x0445}, | |
921 {'c', '=', 0x0446}, | |
922 {'c', '%', 0x0447}, | |
923 {'s', '%', 0x0448}, | |
924 {'s', 'c', 0x0449}, | |
925 {'=', '\'', 0x044a}, | |
926 {'y', '=', 0x044b}, | |
927 {'%', '\'', 0x044c}, | |
928 {'j', 'e', 0x044d}, | |
929 {'j', 'u', 0x044e}, | |
930 {'j', 'a', 0x044f}, | |
931 {'i', 'o', 0x0451}, | |
932 {'d', '%', 0x0452}, | |
933 {'g', '%', 0x0453}, | |
934 {'i', 'e', 0x0454}, | |
935 {'d', 's', 0x0455}, | |
936 {'i', 'i', 0x0456}, | |
937 {'y', 'i', 0x0457}, | |
938 {'j', '%', 0x0458}, | |
939 {'l', 'j', 0x0459}, | |
940 {'n', 'j', 0x045a}, | |
941 {'t', 's', 0x045b}, | |
942 {'k', 'j', 0x045c}, | |
943 {'v', '%', 0x045e}, | |
944 {'d', 'z', 0x045f}, | |
945 {'Y', '3', 0x0462}, | |
946 {'y', '3', 0x0463}, | |
947 {'O', '3', 0x046a}, | |
948 {'o', '3', 0x046b}, | |
949 {'F', '3', 0x0472}, | |
950 {'f', '3', 0x0473}, | |
951 {'V', '3', 0x0474}, | |
952 {'v', '3', 0x0475}, | |
953 {'C', '3', 0x0480}, | |
954 {'c', '3', 0x0481}, | |
955 {'G', '3', 0x0490}, | |
956 {'g', '3', 0x0491}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
957 # define DG_START_HEBREW 0x05d0 |
7 | 958 {'A', '+', 0x05d0}, |
959 {'B', '+', 0x05d1}, | |
960 {'G', '+', 0x05d2}, | |
961 {'D', '+', 0x05d3}, | |
962 {'H', '+', 0x05d4}, | |
963 {'W', '+', 0x05d5}, | |
964 {'Z', '+', 0x05d6}, | |
965 {'X', '+', 0x05d7}, | |
966 {'T', 'j', 0x05d8}, | |
967 {'J', '+', 0x05d9}, | |
968 {'K', '%', 0x05da}, | |
969 {'K', '+', 0x05db}, | |
970 {'L', '+', 0x05dc}, | |
971 {'M', '%', 0x05dd}, | |
972 {'M', '+', 0x05de}, | |
973 {'N', '%', 0x05df}, | |
974 {'N', '+', 0x05e0}, | |
975 {'S', '+', 0x05e1}, | |
976 {'E', '+', 0x05e2}, | |
977 {'P', '%', 0x05e3}, | |
978 {'P', '+', 0x05e4}, | |
979 {'Z', 'j', 0x05e5}, | |
980 {'Z', 'J', 0x05e6}, | |
981 {'Q', '+', 0x05e7}, | |
982 {'R', '+', 0x05e8}, | |
983 {'S', 'h', 0x05e9}, | |
984 {'T', '+', 0x05ea}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
985 # define DG_START_ARABIC 0x060c |
7 | 986 {',', '+', 0x060c}, |
987 {';', '+', 0x061b}, | |
988 {'?', '+', 0x061f}, | |
989 {'H', '\'', 0x0621}, | |
990 {'a', 'M', 0x0622}, | |
991 {'a', 'H', 0x0623}, | |
992 {'w', 'H', 0x0624}, | |
993 {'a', 'h', 0x0625}, | |
994 {'y', 'H', 0x0626}, | |
995 {'a', '+', 0x0627}, | |
996 {'b', '+', 0x0628}, | |
997 {'t', 'm', 0x0629}, | |
998 {'t', '+', 0x062a}, | |
999 {'t', 'k', 0x062b}, | |
1000 {'g', '+', 0x062c}, | |
1001 {'h', 'k', 0x062d}, | |
1002 {'x', '+', 0x062e}, | |
1003 {'d', '+', 0x062f}, | |
1004 {'d', 'k', 0x0630}, | |
1005 {'r', '+', 0x0631}, | |
1006 {'z', '+', 0x0632}, | |
1007 {'s', '+', 0x0633}, | |
1008 {'s', 'n', 0x0634}, | |
1009 {'c', '+', 0x0635}, | |
1010 {'d', 'd', 0x0636}, | |
1011 {'t', 'j', 0x0637}, | |
1012 {'z', 'H', 0x0638}, | |
1013 {'e', '+', 0x0639}, | |
1014 {'i', '+', 0x063a}, | |
1015 {'+', '+', 0x0640}, | |
1016 {'f', '+', 0x0641}, | |
1017 {'q', '+', 0x0642}, | |
1018 {'k', '+', 0x0643}, | |
1019 {'l', '+', 0x0644}, | |
1020 {'m', '+', 0x0645}, | |
1021 {'n', '+', 0x0646}, | |
1022 {'h', '+', 0x0647}, | |
1023 {'w', '+', 0x0648}, | |
1024 {'j', '+', 0x0649}, | |
1025 {'y', '+', 0x064a}, | |
1026 {':', '+', 0x064b}, | |
1027 {'"', '+', 0x064c}, | |
1028 {'=', '+', 0x064d}, | |
1029 {'/', '+', 0x064e}, | |
1030 {'\'', '+', 0x064f}, | |
1031 {'1', '+', 0x0650}, | |
1032 {'3', '+', 0x0651}, | |
1033 {'0', '+', 0x0652}, | |
1034 {'a', 'S', 0x0670}, | |
1035 {'p', '+', 0x067e}, | |
1036 {'v', '+', 0x06a4}, | |
1037 {'g', 'f', 0x06af}, | |
1038 {'0', 'a', 0x06f0}, | |
1039 {'1', 'a', 0x06f1}, | |
1040 {'2', 'a', 0x06f2}, | |
1041 {'3', 'a', 0x06f3}, | |
1042 {'4', 'a', 0x06f4}, | |
1043 {'5', 'a', 0x06f5}, | |
1044 {'6', 'a', 0x06f6}, | |
1045 {'7', 'a', 0x06f7}, | |
1046 {'8', 'a', 0x06f8}, | |
1047 {'9', 'a', 0x06f9}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1048 # define DG_START_LATIN_EXTENDED 0x1e02 |
7 | 1049 {'B', '.', 0x1e02}, |
1050 {'b', '.', 0x1e03}, | |
1051 {'B', '_', 0x1e06}, | |
1052 {'b', '_', 0x1e07}, | |
1053 {'D', '.', 0x1e0a}, | |
1054 {'d', '.', 0x1e0b}, | |
1055 {'D', '_', 0x1e0e}, | |
1056 {'d', '_', 0x1e0f}, | |
1057 {'D', ',', 0x1e10}, | |
1058 {'d', ',', 0x1e11}, | |
1059 {'F', '.', 0x1e1e}, | |
1060 {'f', '.', 0x1e1f}, | |
1061 {'G', '-', 0x1e20}, | |
1062 {'g', '-', 0x1e21}, | |
1063 {'H', '.', 0x1e22}, | |
1064 {'h', '.', 0x1e23}, | |
1065 {'H', ':', 0x1e26}, | |
1066 {'h', ':', 0x1e27}, | |
1067 {'H', ',', 0x1e28}, | |
1068 {'h', ',', 0x1e29}, | |
1069 {'K', '\'', 0x1e30}, | |
1070 {'k', '\'', 0x1e31}, | |
1071 {'K', '_', 0x1e34}, | |
1072 {'k', '_', 0x1e35}, | |
1073 {'L', '_', 0x1e3a}, | |
1074 {'l', '_', 0x1e3b}, | |
1075 {'M', '\'', 0x1e3e}, | |
1076 {'m', '\'', 0x1e3f}, | |
1077 {'M', '.', 0x1e40}, | |
1078 {'m', '.', 0x1e41}, | |
1079 {'N', '.', 0x1e44}, | |
1080 {'n', '.', 0x1e45}, | |
1081 {'N', '_', 0x1e48}, | |
1082 {'n', '_', 0x1e49}, | |
1083 {'P', '\'', 0x1e54}, | |
1084 {'p', '\'', 0x1e55}, | |
1085 {'P', '.', 0x1e56}, | |
1086 {'p', '.', 0x1e57}, | |
1087 {'R', '.', 0x1e58}, | |
1088 {'r', '.', 0x1e59}, | |
1089 {'R', '_', 0x1e5e}, | |
1090 {'r', '_', 0x1e5f}, | |
1091 {'S', '.', 0x1e60}, | |
1092 {'s', '.', 0x1e61}, | |
1093 {'T', '.', 0x1e6a}, | |
1094 {'t', '.', 0x1e6b}, | |
1095 {'T', '_', 0x1e6e}, | |
1096 {'t', '_', 0x1e6f}, | |
1097 {'V', '?', 0x1e7c}, | |
1098 {'v', '?', 0x1e7d}, | |
1099 {'W', '!', 0x1e80}, | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1100 {'W', '`', 0x1e80}, // extra alternative, easier to remember |
7 | 1101 {'w', '!', 0x1e81}, |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1102 {'w', '`', 0x1e81}, // extra alternative, easier to remember |
7 | 1103 {'W', '\'', 0x1e82}, |
1104 {'w', '\'', 0x1e83}, | |
1105 {'W', ':', 0x1e84}, | |
1106 {'w', ':', 0x1e85}, | |
1107 {'W', '.', 0x1e86}, | |
1108 {'w', '.', 0x1e87}, | |
1109 {'X', '.', 0x1e8a}, | |
1110 {'x', '.', 0x1e8b}, | |
1111 {'X', ':', 0x1e8c}, | |
1112 {'x', ':', 0x1e8d}, | |
1113 {'Y', '.', 0x1e8e}, | |
1114 {'y', '.', 0x1e8f}, | |
1115 {'Z', '>', 0x1e90}, | |
1116 {'z', '>', 0x1e91}, | |
1117 {'Z', '_', 0x1e94}, | |
1118 {'z', '_', 0x1e95}, | |
1119 {'h', '_', 0x1e96}, | |
1120 {'t', ':', 0x1e97}, | |
1121 {'w', '0', 0x1e98}, | |
1122 {'y', '0', 0x1e99}, | |
1123 {'A', '2', 0x1ea2}, | |
1124 {'a', '2', 0x1ea3}, | |
1125 {'E', '2', 0x1eba}, | |
1126 {'e', '2', 0x1ebb}, | |
1127 {'E', '?', 0x1ebc}, | |
1128 {'e', '?', 0x1ebd}, | |
1129 {'I', '2', 0x1ec8}, | |
1130 {'i', '2', 0x1ec9}, | |
1131 {'O', '2', 0x1ece}, | |
1132 {'o', '2', 0x1ecf}, | |
1133 {'U', '2', 0x1ee6}, | |
1134 {'u', '2', 0x1ee7}, | |
1135 {'Y', '!', 0x1ef2}, | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1136 {'Y', '`', 0x1ef2}, // extra alternative, easier to remember |
7 | 1137 {'y', '!', 0x1ef3}, |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1138 {'y', '`', 0x1ef3}, // extra alternative, easier to remember |
7 | 1139 {'Y', '2', 0x1ef6}, |
1140 {'y', '2', 0x1ef7}, | |
1141 {'Y', '?', 0x1ef8}, | |
1142 {'y', '?', 0x1ef9}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1143 # define DG_START_GREEK_EXTENDED 0x1f00 |
7 | 1144 {';', '\'', 0x1f00}, |
1145 {',', '\'', 0x1f01}, | |
1146 {';', '!', 0x1f02}, | |
1147 {',', '!', 0x1f03}, | |
1148 {'?', ';', 0x1f04}, | |
1149 {'?', ',', 0x1f05}, | |
1150 {'!', ':', 0x1f06}, | |
1151 {'?', ':', 0x1f07}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1152 # define DG_START_PUNCTUATION 0x2002 |
7 | 1153 {'1', 'N', 0x2002}, |
1154 {'1', 'M', 0x2003}, | |
1155 {'3', 'M', 0x2004}, | |
1156 {'4', 'M', 0x2005}, | |
1157 {'6', 'M', 0x2006}, | |
1158 {'1', 'T', 0x2009}, | |
1159 {'1', 'H', 0x200a}, | |
1160 {'-', '1', 0x2010}, | |
1161 {'-', 'N', 0x2013}, | |
1162 {'-', 'M', 0x2014}, | |
1163 {'-', '3', 0x2015}, | |
1164 {'!', '2', 0x2016}, | |
1165 {'=', '2', 0x2017}, | |
1166 {'\'', '6', 0x2018}, | |
1167 {'\'', '9', 0x2019}, | |
1168 {'.', '9', 0x201a}, | |
1169 {'9', '\'', 0x201b}, | |
1170 {'"', '6', 0x201c}, | |
1171 {'"', '9', 0x201d}, | |
1172 {':', '9', 0x201e}, | |
1173 {'9', '"', 0x201f}, | |
1174 {'/', '-', 0x2020}, | |
1175 {'/', '=', 0x2021}, | |
22172
1b23391fac7e
patch 8.2.1635: no digraph for 0x2022 BULLET
Bram Moolenaar <Bram@vim.org>
parents:
21329
diff
changeset
|
1176 {'o', 'o', 0x2022}, |
7 | 1177 {'.', '.', 0x2025}, |
10334
086117f5fb71
commit https://github.com/vim/vim/commit/81615517249bb78cba9c37c9834b787c1b265521
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1178 {',', '.', 0x2026}, |
7 | 1179 {'%', '0', 0x2030}, |
1180 {'1', '\'', 0x2032}, | |
1181 {'2', '\'', 0x2033}, | |
1182 {'3', '\'', 0x2034}, | |
1183 {'1', '"', 0x2035}, | |
1184 {'2', '"', 0x2036}, | |
1185 {'3', '"', 0x2037}, | |
1186 {'C', 'a', 0x2038}, | |
1187 {'<', '1', 0x2039}, | |
1188 {'>', '1', 0x203a}, | |
1189 {':', 'X', 0x203b}, | |
1190 {'\'', '-', 0x203e}, | |
1191 {'/', 'f', 0x2044}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1192 # define DG_START_SUB_SUPER 0x2070 |
7 | 1193 {'0', 'S', 0x2070}, |
1194 {'4', 'S', 0x2074}, | |
1195 {'5', 'S', 0x2075}, | |
1196 {'6', 'S', 0x2076}, | |
1197 {'7', 'S', 0x2077}, | |
1198 {'8', 'S', 0x2078}, | |
1199 {'9', 'S', 0x2079}, | |
1200 {'+', 'S', 0x207a}, | |
1201 {'-', 'S', 0x207b}, | |
1202 {'=', 'S', 0x207c}, | |
1203 {'(', 'S', 0x207d}, | |
1204 {')', 'S', 0x207e}, | |
1205 {'n', 'S', 0x207f}, | |
1206 {'0', 's', 0x2080}, | |
1207 {'1', 's', 0x2081}, | |
1208 {'2', 's', 0x2082}, | |
1209 {'3', 's', 0x2083}, | |
1210 {'4', 's', 0x2084}, | |
1211 {'5', 's', 0x2085}, | |
1212 {'6', 's', 0x2086}, | |
1213 {'7', 's', 0x2087}, | |
1214 {'8', 's', 0x2088}, | |
1215 {'9', 's', 0x2089}, | |
1216 {'+', 's', 0x208a}, | |
1217 {'-', 's', 0x208b}, | |
1218 {'=', 's', 0x208c}, | |
1219 {'(', 's', 0x208d}, | |
1220 {')', 's', 0x208e}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1221 # define DG_START_CURRENCY 0x20a4 |
7 | 1222 {'L', 'i', 0x20a4}, |
1223 {'P', 't', 0x20a7}, | |
1224 {'W', '=', 0x20a9}, | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1225 {'=', 'e', 0x20ac}, // euro |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1226 {'E', 'u', 0x20ac}, // euro |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1227 {'=', 'R', 0x20bd}, // rouble |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1228 {'=', 'P', 0x20bd}, // rouble |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1229 # define DG_START_OTHER1 0x2103 |
7 | 1230 {'o', 'C', 0x2103}, |
1231 {'c', 'o', 0x2105}, | |
1232 {'o', 'F', 0x2109}, | |
1233 {'N', '0', 0x2116}, | |
1234 {'P', 'O', 0x2117}, | |
1235 {'R', 'x', 0x211e}, | |
1236 {'S', 'M', 0x2120}, | |
1237 {'T', 'M', 0x2122}, | |
1238 {'O', 'm', 0x2126}, | |
1239 {'A', 'O', 0x212b}, | |
1240 {'1', '3', 0x2153}, | |
1241 {'2', '3', 0x2154}, | |
1242 {'1', '5', 0x2155}, | |
1243 {'2', '5', 0x2156}, | |
1244 {'3', '5', 0x2157}, | |
1245 {'4', '5', 0x2158}, | |
1246 {'1', '6', 0x2159}, | |
1247 {'5', '6', 0x215a}, | |
1248 {'1', '8', 0x215b}, | |
1249 {'3', '8', 0x215c}, | |
1250 {'5', '8', 0x215d}, | |
1251 {'7', '8', 0x215e}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1252 # define DG_START_ROMAN 0x2160 |
7 | 1253 {'1', 'R', 0x2160}, |
1254 {'2', 'R', 0x2161}, | |
1255 {'3', 'R', 0x2162}, | |
1256 {'4', 'R', 0x2163}, | |
1257 {'5', 'R', 0x2164}, | |
1258 {'6', 'R', 0x2165}, | |
1259 {'7', 'R', 0x2166}, | |
1260 {'8', 'R', 0x2167}, | |
1261 {'9', 'R', 0x2168}, | |
1262 {'a', 'R', 0x2169}, | |
1263 {'b', 'R', 0x216a}, | |
1264 {'c', 'R', 0x216b}, | |
1265 {'1', 'r', 0x2170}, | |
1266 {'2', 'r', 0x2171}, | |
1267 {'3', 'r', 0x2172}, | |
1268 {'4', 'r', 0x2173}, | |
1269 {'5', 'r', 0x2174}, | |
1270 {'6', 'r', 0x2175}, | |
1271 {'7', 'r', 0x2176}, | |
1272 {'8', 'r', 0x2177}, | |
1273 {'9', 'r', 0x2178}, | |
1274 {'a', 'r', 0x2179}, | |
1275 {'b', 'r', 0x217a}, | |
1276 {'c', 'r', 0x217b}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1277 # define DG_START_ARROWS 0x2190 |
7 | 1278 {'<', '-', 0x2190}, |
1279 {'-', '!', 0x2191}, | |
1280 {'-', '>', 0x2192}, | |
1281 {'-', 'v', 0x2193}, | |
1282 {'<', '>', 0x2194}, | |
1283 {'U', 'D', 0x2195}, | |
1284 {'<', '=', 0x21d0}, | |
1285 {'=', '>', 0x21d2}, | |
1286 {'=', '=', 0x21d4}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1287 # define DG_START_MATH 0x2200 |
7 | 1288 {'F', 'A', 0x2200}, |
1289 {'d', 'P', 0x2202}, | |
1290 {'T', 'E', 0x2203}, | |
1291 {'/', '0', 0x2205}, | |
1292 {'D', 'E', 0x2206}, | |
1293 {'N', 'B', 0x2207}, | |
1294 {'(', '-', 0x2208}, | |
1295 {'-', ')', 0x220b}, | |
1296 {'*', 'P', 0x220f}, | |
1297 {'+', 'Z', 0x2211}, | |
1298 {'-', '2', 0x2212}, | |
1299 {'-', '+', 0x2213}, | |
1300 {'*', '-', 0x2217}, | |
1301 {'O', 'b', 0x2218}, | |
1302 {'S', 'b', 0x2219}, | |
1303 {'R', 'T', 0x221a}, | |
1304 {'0', '(', 0x221d}, | |
1305 {'0', '0', 0x221e}, | |
1306 {'-', 'L', 0x221f}, | |
1307 {'-', 'V', 0x2220}, | |
1308 {'P', 'P', 0x2225}, | |
1309 {'A', 'N', 0x2227}, | |
1310 {'O', 'R', 0x2228}, | |
1311 {'(', 'U', 0x2229}, | |
1312 {')', 'U', 0x222a}, | |
1313 {'I', 'n', 0x222b}, | |
1314 {'D', 'I', 0x222c}, | |
1315 {'I', 'o', 0x222e}, | |
1316 {'.', ':', 0x2234}, | |
1317 {':', '.', 0x2235}, | |
1318 {':', 'R', 0x2236}, | |
1319 {':', ':', 0x2237}, | |
1320 {'?', '1', 0x223c}, | |
1321 {'C', 'G', 0x223e}, | |
1322 {'?', '-', 0x2243}, | |
1323 {'?', '=', 0x2245}, | |
1324 {'?', '2', 0x2248}, | |
1325 {'=', '?', 0x224c}, | |
1326 {'H', 'I', 0x2253}, | |
1327 {'!', '=', 0x2260}, | |
1328 {'=', '3', 0x2261}, | |
1329 {'=', '<', 0x2264}, | |
1330 {'>', '=', 0x2265}, | |
1331 {'<', '*', 0x226a}, | |
1332 {'*', '>', 0x226b}, | |
1333 {'!', '<', 0x226e}, | |
1334 {'!', '>', 0x226f}, | |
1335 {'(', 'C', 0x2282}, | |
1336 {')', 'C', 0x2283}, | |
1337 {'(', '_', 0x2286}, | |
1338 {')', '_', 0x2287}, | |
1339 {'0', '.', 0x2299}, | |
1340 {'0', '2', 0x229a}, | |
1341 {'-', 'T', 0x22a5}, | |
1342 {'.', 'P', 0x22c5}, | |
1343 {':', '3', 0x22ee}, | |
1344 {'.', '3', 0x22ef}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1345 # define DG_START_TECHNICAL 0x2302 |
7 | 1346 {'E', 'h', 0x2302}, |
1347 {'<', '7', 0x2308}, | |
1348 {'>', '7', 0x2309}, | |
1349 {'7', '<', 0x230a}, | |
1350 {'7', '>', 0x230b}, | |
1351 {'N', 'I', 0x2310}, | |
1352 {'(', 'A', 0x2312}, | |
1353 {'T', 'R', 0x2315}, | |
1354 {'I', 'u', 0x2320}, | |
1355 {'I', 'l', 0x2321}, | |
1356 {'<', '/', 0x2329}, | |
1357 {'/', '>', 0x232a}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1358 # define DG_START_OTHER2 0x2423 |
7 | 1359 {'V', 's', 0x2423}, |
1360 {'1', 'h', 0x2440}, | |
1361 {'3', 'h', 0x2441}, | |
1362 {'2', 'h', 0x2442}, | |
1363 {'4', 'h', 0x2443}, | |
1364 {'1', 'j', 0x2446}, | |
1365 {'2', 'j', 0x2447}, | |
1366 {'3', 'j', 0x2448}, | |
1367 {'4', 'j', 0x2449}, | |
1368 {'1', '.', 0x2488}, | |
1369 {'2', '.', 0x2489}, | |
1370 {'3', '.', 0x248a}, | |
1371 {'4', '.', 0x248b}, | |
1372 {'5', '.', 0x248c}, | |
1373 {'6', '.', 0x248d}, | |
1374 {'7', '.', 0x248e}, | |
1375 {'8', '.', 0x248f}, | |
1376 {'9', '.', 0x2490}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1377 # define DG_START_DRAWING 0x2500 |
7 | 1378 {'h', 'h', 0x2500}, |
1379 {'H', 'H', 0x2501}, | |
1380 {'v', 'v', 0x2502}, | |
1381 {'V', 'V', 0x2503}, | |
1382 {'3', '-', 0x2504}, | |
1383 {'3', '_', 0x2505}, | |
1384 {'3', '!', 0x2506}, | |
1385 {'3', '/', 0x2507}, | |
1386 {'4', '-', 0x2508}, | |
1387 {'4', '_', 0x2509}, | |
1388 {'4', '!', 0x250a}, | |
1389 {'4', '/', 0x250b}, | |
1390 {'d', 'r', 0x250c}, | |
1391 {'d', 'R', 0x250d}, | |
1392 {'D', 'r', 0x250e}, | |
1393 {'D', 'R', 0x250f}, | |
1394 {'d', 'l', 0x2510}, | |
1395 {'d', 'L', 0x2511}, | |
1396 {'D', 'l', 0x2512}, | |
1397 {'L', 'D', 0x2513}, | |
1398 {'u', 'r', 0x2514}, | |
1399 {'u', 'R', 0x2515}, | |
1400 {'U', 'r', 0x2516}, | |
1401 {'U', 'R', 0x2517}, | |
1402 {'u', 'l', 0x2518}, | |
1403 {'u', 'L', 0x2519}, | |
1404 {'U', 'l', 0x251a}, | |
1405 {'U', 'L', 0x251b}, | |
1406 {'v', 'r', 0x251c}, | |
1407 {'v', 'R', 0x251d}, | |
1408 {'V', 'r', 0x2520}, | |
1409 {'V', 'R', 0x2523}, | |
1410 {'v', 'l', 0x2524}, | |
1411 {'v', 'L', 0x2525}, | |
1412 {'V', 'l', 0x2528}, | |
1413 {'V', 'L', 0x252b}, | |
1414 {'d', 'h', 0x252c}, | |
1415 {'d', 'H', 0x252f}, | |
1416 {'D', 'h', 0x2530}, | |
1417 {'D', 'H', 0x2533}, | |
1418 {'u', 'h', 0x2534}, | |
1419 {'u', 'H', 0x2537}, | |
1420 {'U', 'h', 0x2538}, | |
1421 {'U', 'H', 0x253b}, | |
1422 {'v', 'h', 0x253c}, | |
1423 {'v', 'H', 0x253f}, | |
1424 {'V', 'h', 0x2542}, | |
1425 {'V', 'H', 0x254b}, | |
1426 {'F', 'D', 0x2571}, | |
1427 {'B', 'D', 0x2572}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1428 # define DG_START_BLOCK 0x2580 |
7 | 1429 {'T', 'B', 0x2580}, |
1430 {'L', 'B', 0x2584}, | |
1431 {'F', 'B', 0x2588}, | |
1432 {'l', 'B', 0x258c}, | |
1433 {'R', 'B', 0x2590}, | |
1434 {'.', 'S', 0x2591}, | |
1435 {':', 'S', 0x2592}, | |
1436 {'?', 'S', 0x2593}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1437 # define DG_START_SHAPES 0x25a0 |
7 | 1438 {'f', 'S', 0x25a0}, |
1439 {'O', 'S', 0x25a1}, | |
1440 {'R', 'O', 0x25a2}, | |
1441 {'R', 'r', 0x25a3}, | |
1442 {'R', 'F', 0x25a4}, | |
1443 {'R', 'Y', 0x25a5}, | |
1444 {'R', 'H', 0x25a6}, | |
1445 {'R', 'Z', 0x25a7}, | |
1446 {'R', 'K', 0x25a8}, | |
1447 {'R', 'X', 0x25a9}, | |
1448 {'s', 'B', 0x25aa}, | |
1449 {'S', 'R', 0x25ac}, | |
1450 {'O', 'r', 0x25ad}, | |
1451 {'U', 'T', 0x25b2}, | |
1452 {'u', 'T', 0x25b3}, | |
1453 {'P', 'R', 0x25b6}, | |
1454 {'T', 'r', 0x25b7}, | |
1455 {'D', 't', 0x25bc}, | |
1456 {'d', 'T', 0x25bd}, | |
1457 {'P', 'L', 0x25c0}, | |
1458 {'T', 'l', 0x25c1}, | |
1459 {'D', 'b', 0x25c6}, | |
1460 {'D', 'w', 0x25c7}, | |
1461 {'L', 'Z', 0x25ca}, | |
1462 {'0', 'm', 0x25cb}, | |
1463 {'0', 'o', 0x25ce}, | |
1464 {'0', 'M', 0x25cf}, | |
1465 {'0', 'L', 0x25d0}, | |
1466 {'0', 'R', 0x25d1}, | |
1467 {'S', 'n', 0x25d8}, | |
1468 {'I', 'c', 0x25d9}, | |
1469 {'F', 'd', 0x25e2}, | |
1470 {'B', 'd', 0x25e3}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1471 # define DG_START_SYMBOLS 0x2605 |
7 | 1472 {'*', '2', 0x2605}, |
1473 {'*', '1', 0x2606}, | |
1474 {'<', 'H', 0x261c}, | |
1475 {'>', 'H', 0x261e}, | |
1476 {'0', 'u', 0x263a}, | |
1477 {'0', 'U', 0x263b}, | |
1478 {'S', 'U', 0x263c}, | |
1479 {'F', 'm', 0x2640}, | |
1480 {'M', 'l', 0x2642}, | |
1481 {'c', 'S', 0x2660}, | |
1482 {'c', 'H', 0x2661}, | |
1483 {'c', 'D', 0x2662}, | |
1484 {'c', 'C', 0x2663}, | |
1485 {'M', 'd', 0x2669}, | |
1486 {'M', '8', 0x266a}, | |
1487 {'M', '2', 0x266b}, | |
1488 {'M', 'b', 0x266d}, | |
1489 {'M', 'x', 0x266e}, | |
1490 {'M', 'X', 0x266f}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1491 # define DG_START_DINGBATS 0x2713 |
7 | 1492 {'O', 'K', 0x2713}, |
1493 {'X', 'X', 0x2717}, | |
1494 {'-', 'X', 0x2720}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1495 # define DG_START_CJK_SYMBOLS 0x3000 |
7 | 1496 {'I', 'S', 0x3000}, |
1497 {',', '_', 0x3001}, | |
1498 {'.', '_', 0x3002}, | |
1499 {'+', '"', 0x3003}, | |
1500 {'+', '_', 0x3004}, | |
1501 {'*', '_', 0x3005}, | |
1502 {';', '_', 0x3006}, | |
1503 {'0', '_', 0x3007}, | |
1504 {'<', '+', 0x300a}, | |
1505 {'>', '+', 0x300b}, | |
1506 {'<', '\'', 0x300c}, | |
1507 {'>', '\'', 0x300d}, | |
1508 {'<', '"', 0x300e}, | |
1509 {'>', '"', 0x300f}, | |
1510 {'(', '"', 0x3010}, | |
1511 {')', '"', 0x3011}, | |
1512 {'=', 'T', 0x3012}, | |
1513 {'=', '_', 0x3013}, | |
1514 {'(', '\'', 0x3014}, | |
1515 {')', '\'', 0x3015}, | |
1516 {'(', 'I', 0x3016}, | |
1517 {')', 'I', 0x3017}, | |
1518 {'-', '?', 0x301c}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1519 # define DG_START_HIRAGANA 0x3041 |
7 | 1520 {'A', '5', 0x3041}, |
1521 {'a', '5', 0x3042}, | |
1522 {'I', '5', 0x3043}, | |
1523 {'i', '5', 0x3044}, | |
1524 {'U', '5', 0x3045}, | |
1525 {'u', '5', 0x3046}, | |
1526 {'E', '5', 0x3047}, | |
1527 {'e', '5', 0x3048}, | |
1528 {'O', '5', 0x3049}, | |
1529 {'o', '5', 0x304a}, | |
1530 {'k', 'a', 0x304b}, | |
1531 {'g', 'a', 0x304c}, | |
1532 {'k', 'i', 0x304d}, | |
1533 {'g', 'i', 0x304e}, | |
1534 {'k', 'u', 0x304f}, | |
1535 {'g', 'u', 0x3050}, | |
1536 {'k', 'e', 0x3051}, | |
1537 {'g', 'e', 0x3052}, | |
1538 {'k', 'o', 0x3053}, | |
1539 {'g', 'o', 0x3054}, | |
1540 {'s', 'a', 0x3055}, | |
1541 {'z', 'a', 0x3056}, | |
1542 {'s', 'i', 0x3057}, | |
1543 {'z', 'i', 0x3058}, | |
1544 {'s', 'u', 0x3059}, | |
1545 {'z', 'u', 0x305a}, | |
1546 {'s', 'e', 0x305b}, | |
1547 {'z', 'e', 0x305c}, | |
1548 {'s', 'o', 0x305d}, | |
1549 {'z', 'o', 0x305e}, | |
1550 {'t', 'a', 0x305f}, | |
1551 {'d', 'a', 0x3060}, | |
1552 {'t', 'i', 0x3061}, | |
1553 {'d', 'i', 0x3062}, | |
1554 {'t', 'U', 0x3063}, | |
1555 {'t', 'u', 0x3064}, | |
1556 {'d', 'u', 0x3065}, | |
1557 {'t', 'e', 0x3066}, | |
1558 {'d', 'e', 0x3067}, | |
1559 {'t', 'o', 0x3068}, | |
1560 {'d', 'o', 0x3069}, | |
1561 {'n', 'a', 0x306a}, | |
1562 {'n', 'i', 0x306b}, | |
1563 {'n', 'u', 0x306c}, | |
1564 {'n', 'e', 0x306d}, | |
1565 {'n', 'o', 0x306e}, | |
1566 {'h', 'a', 0x306f}, | |
1567 {'b', 'a', 0x3070}, | |
1568 {'p', 'a', 0x3071}, | |
1569 {'h', 'i', 0x3072}, | |
1570 {'b', 'i', 0x3073}, | |
1571 {'p', 'i', 0x3074}, | |
1572 {'h', 'u', 0x3075}, | |
1573 {'b', 'u', 0x3076}, | |
1574 {'p', 'u', 0x3077}, | |
1575 {'h', 'e', 0x3078}, | |
1576 {'b', 'e', 0x3079}, | |
1577 {'p', 'e', 0x307a}, | |
1578 {'h', 'o', 0x307b}, | |
1579 {'b', 'o', 0x307c}, | |
1580 {'p', 'o', 0x307d}, | |
1581 {'m', 'a', 0x307e}, | |
1582 {'m', 'i', 0x307f}, | |
1583 {'m', 'u', 0x3080}, | |
1584 {'m', 'e', 0x3081}, | |
1585 {'m', 'o', 0x3082}, | |
1586 {'y', 'A', 0x3083}, | |
1587 {'y', 'a', 0x3084}, | |
1588 {'y', 'U', 0x3085}, | |
1589 {'y', 'u', 0x3086}, | |
1590 {'y', 'O', 0x3087}, | |
1591 {'y', 'o', 0x3088}, | |
1592 {'r', 'a', 0x3089}, | |
1593 {'r', 'i', 0x308a}, | |
1594 {'r', 'u', 0x308b}, | |
1595 {'r', 'e', 0x308c}, | |
1596 {'r', 'o', 0x308d}, | |
1597 {'w', 'A', 0x308e}, | |
1598 {'w', 'a', 0x308f}, | |
1599 {'w', 'i', 0x3090}, | |
1600 {'w', 'e', 0x3091}, | |
1601 {'w', 'o', 0x3092}, | |
1602 {'n', '5', 0x3093}, | |
1603 {'v', 'u', 0x3094}, | |
1604 {'"', '5', 0x309b}, | |
1605 {'0', '5', 0x309c}, | |
1606 {'*', '5', 0x309d}, | |
1607 {'+', '5', 0x309e}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1608 # define DG_START_KATAKANA 0x30a1 |
7 | 1609 {'a', '6', 0x30a1}, |
1610 {'A', '6', 0x30a2}, | |
1611 {'i', '6', 0x30a3}, | |
1612 {'I', '6', 0x30a4}, | |
1613 {'u', '6', 0x30a5}, | |
1614 {'U', '6', 0x30a6}, | |
1615 {'e', '6', 0x30a7}, | |
1616 {'E', '6', 0x30a8}, | |
1617 {'o', '6', 0x30a9}, | |
1618 {'O', '6', 0x30aa}, | |
1619 {'K', 'a', 0x30ab}, | |
1620 {'G', 'a', 0x30ac}, | |
1621 {'K', 'i', 0x30ad}, | |
1622 {'G', 'i', 0x30ae}, | |
1623 {'K', 'u', 0x30af}, | |
1624 {'G', 'u', 0x30b0}, | |
1625 {'K', 'e', 0x30b1}, | |
1626 {'G', 'e', 0x30b2}, | |
1627 {'K', 'o', 0x30b3}, | |
1628 {'G', 'o', 0x30b4}, | |
1629 {'S', 'a', 0x30b5}, | |
1630 {'Z', 'a', 0x30b6}, | |
1631 {'S', 'i', 0x30b7}, | |
1632 {'Z', 'i', 0x30b8}, | |
1633 {'S', 'u', 0x30b9}, | |
1634 {'Z', 'u', 0x30ba}, | |
1635 {'S', 'e', 0x30bb}, | |
1636 {'Z', 'e', 0x30bc}, | |
1637 {'S', 'o', 0x30bd}, | |
1638 {'Z', 'o', 0x30be}, | |
1639 {'T', 'a', 0x30bf}, | |
1640 {'D', 'a', 0x30c0}, | |
1641 {'T', 'i', 0x30c1}, | |
1642 {'D', 'i', 0x30c2}, | |
1643 {'T', 'U', 0x30c3}, | |
1644 {'T', 'u', 0x30c4}, | |
1645 {'D', 'u', 0x30c5}, | |
1646 {'T', 'e', 0x30c6}, | |
1647 {'D', 'e', 0x30c7}, | |
1648 {'T', 'o', 0x30c8}, | |
1649 {'D', 'o', 0x30c9}, | |
1650 {'N', 'a', 0x30ca}, | |
1651 {'N', 'i', 0x30cb}, | |
1652 {'N', 'u', 0x30cc}, | |
1653 {'N', 'e', 0x30cd}, | |
1654 {'N', 'o', 0x30ce}, | |
1655 {'H', 'a', 0x30cf}, | |
1656 {'B', 'a', 0x30d0}, | |
1657 {'P', 'a', 0x30d1}, | |
1658 {'H', 'i', 0x30d2}, | |
1659 {'B', 'i', 0x30d3}, | |
1660 {'P', 'i', 0x30d4}, | |
1661 {'H', 'u', 0x30d5}, | |
1662 {'B', 'u', 0x30d6}, | |
1663 {'P', 'u', 0x30d7}, | |
1664 {'H', 'e', 0x30d8}, | |
1665 {'B', 'e', 0x30d9}, | |
1666 {'P', 'e', 0x30da}, | |
1667 {'H', 'o', 0x30db}, | |
1668 {'B', 'o', 0x30dc}, | |
1669 {'P', 'o', 0x30dd}, | |
1670 {'M', 'a', 0x30de}, | |
1671 {'M', 'i', 0x30df}, | |
1672 {'M', 'u', 0x30e0}, | |
1673 {'M', 'e', 0x30e1}, | |
1674 {'M', 'o', 0x30e2}, | |
1675 {'Y', 'A', 0x30e3}, | |
1676 {'Y', 'a', 0x30e4}, | |
1677 {'Y', 'U', 0x30e5}, | |
1678 {'Y', 'u', 0x30e6}, | |
1679 {'Y', 'O', 0x30e7}, | |
1680 {'Y', 'o', 0x30e8}, | |
1681 {'R', 'a', 0x30e9}, | |
1682 {'R', 'i', 0x30ea}, | |
1683 {'R', 'u', 0x30eb}, | |
1684 {'R', 'e', 0x30ec}, | |
1685 {'R', 'o', 0x30ed}, | |
1686 {'W', 'A', 0x30ee}, | |
1687 {'W', 'a', 0x30ef}, | |
1688 {'W', 'i', 0x30f0}, | |
1689 {'W', 'e', 0x30f1}, | |
1690 {'W', 'o', 0x30f2}, | |
1691 {'N', '6', 0x30f3}, | |
1692 {'V', 'u', 0x30f4}, | |
1693 {'K', 'A', 0x30f5}, | |
1694 {'K', 'E', 0x30f6}, | |
1695 {'V', 'a', 0x30f7}, | |
1696 {'V', 'i', 0x30f8}, | |
1697 {'V', 'e', 0x30f9}, | |
1698 {'V', 'o', 0x30fa}, | |
1699 {'.', '6', 0x30fb}, | |
1700 {'-', '6', 0x30fc}, | |
1701 {'*', '6', 0x30fd}, | |
1702 {'+', '6', 0x30fe}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1703 # define DG_START_BOPOMOFO 0x3105 |
7 | 1704 {'b', '4', 0x3105}, |
1705 {'p', '4', 0x3106}, | |
1706 {'m', '4', 0x3107}, | |
1707 {'f', '4', 0x3108}, | |
1708 {'d', '4', 0x3109}, | |
1709 {'t', '4', 0x310a}, | |
1710 {'n', '4', 0x310b}, | |
1711 {'l', '4', 0x310c}, | |
1712 {'g', '4', 0x310d}, | |
1713 {'k', '4', 0x310e}, | |
1714 {'h', '4', 0x310f}, | |
1715 {'j', '4', 0x3110}, | |
1716 {'q', '4', 0x3111}, | |
1717 {'x', '4', 0x3112}, | |
1718 {'z', 'h', 0x3113}, | |
1719 {'c', 'h', 0x3114}, | |
1720 {'s', 'h', 0x3115}, | |
1721 {'r', '4', 0x3116}, | |
1722 {'z', '4', 0x3117}, | |
1723 {'c', '4', 0x3118}, | |
1724 {'s', '4', 0x3119}, | |
1725 {'a', '4', 0x311a}, | |
1726 {'o', '4', 0x311b}, | |
1727 {'e', '4', 0x311c}, | |
1728 {'a', 'i', 0x311e}, | |
1729 {'e', 'i', 0x311f}, | |
1730 {'a', 'u', 0x3120}, | |
1731 {'o', 'u', 0x3121}, | |
1732 {'a', 'n', 0x3122}, | |
1733 {'e', 'n', 0x3123}, | |
1734 {'a', 'N', 0x3124}, | |
1735 {'e', 'N', 0x3125}, | |
1736 {'e', 'r', 0x3126}, | |
1737 {'i', '4', 0x3127}, | |
1738 {'u', '4', 0x3128}, | |
1739 {'i', 'u', 0x3129}, | |
1740 {'v', '4', 0x312a}, | |
1741 {'n', 'G', 0x312b}, | |
1742 {'g', 'n', 0x312c}, | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1743 # define DG_START_OTHER3 0x3220 |
7 | 1744 {'1', 'c', 0x3220}, |
1745 {'2', 'c', 0x3221}, | |
1746 {'3', 'c', 0x3222}, | |
1747 {'4', 'c', 0x3223}, | |
1748 {'5', 'c', 0x3224}, | |
1749 {'6', 'c', 0x3225}, | |
1750 {'7', 'c', 0x3226}, | |
1751 {'8', 'c', 0x3227}, | |
1752 {'9', 'c', 0x3228}, | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1753 // code points 0xe000 - 0xefff excluded, they have no assigned |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1754 // characters, only used in proposals. |
7 | 1755 {'f', 'f', 0xfb00}, |
1756 {'f', 'i', 0xfb01}, | |
1757 {'f', 'l', 0xfb02}, | |
1758 {'f', 't', 0xfb05}, | |
1759 {'s', 't', 0xfb06}, | |
1478 | 1760 |
7 | 1761 {NUL, NUL, NUL} |
1762 }; | |
1763 | |
21329
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1764 # endif // OLD_DIGRAPHS |
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1765 # endif // EBCDIC |
bb3f60b0aca0
patch 8.2.1215: Atari MiNT support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20751
diff
changeset
|
1766 #endif // !HPUX_DIGRAPHS |
7 | 1767 |
1768 /* | |
1769 * handle digraphs after typing a character | |
1770 */ | |
1771 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1772 do_digraph(int c) |
7 | 1773 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1774 static int backspaced; // character before K_BS |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1775 static int lastchar; // last typed character |
7 | 1776 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1777 if (c == -1) // init values |
7 | 1778 { |
1779 backspaced = -1; | |
1780 } | |
1781 else if (p_dg) | |
1782 { | |
1783 if (backspaced >= 0) | |
1784 c = getdigraph(backspaced, c, FALSE); | |
1785 backspaced = -1; | |
1786 if ((c == K_BS || c == Ctrl_H) && lastchar >= 0) | |
1787 backspaced = lastchar; | |
1788 } | |
1789 lastchar = c; | |
1790 return c; | |
1791 } | |
1792 | |
1793 /* | |
13359
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1794 * Find a digraph for "val". If found return the string to display it. |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1795 * If not found return NULL. |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1796 */ |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1797 char_u * |
14083
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1798 get_digraph_for_char(int val_arg) |
13359
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1799 { |
14083
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1800 int val = val_arg; |
13359
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1801 int i; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1802 int use_defaults; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1803 digr_T *dp; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1804 static char_u r[3]; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1805 |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1806 #if defined(USE_UNICODE_DIGRAPHS) |
14083
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1807 if (!enc_utf8) |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1808 { |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1809 char_u buf[6], *to; |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1810 vimconv_T vc; |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1811 |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1812 // convert the character from 'encoding' to Unicode |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1813 i = mb_char2bytes(val, buf); |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1814 vc.vc_type = CONV_NONE; |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1815 if (convert_setup(&vc, p_enc, (char_u *)"utf-8") == OK) |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1816 { |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1817 vc.vc_fail = TRUE; |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1818 to = string_convert(&vc, buf, &i); |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1819 if (to != NULL) |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1820 { |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1821 val = utf_ptr2char(to); |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1822 vim_free(to); |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1823 } |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1824 (void)convert_setup(&vc, NULL, NULL); |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1825 } |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1826 } |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1827 #endif |
8a9a00357676
patch 8.1.0059: displayed digraph for "ga" wrong with 'encoding' "cp1251"
Christian Brabandt <cb@256bit.org>
parents:
13359
diff
changeset
|
1828 |
13359
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1829 for (use_defaults = 0; use_defaults <= 1; use_defaults++) |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1830 { |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1831 if (use_defaults == 0) |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1832 dp = (digr_T *)user_digraphs.ga_data; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1833 else |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1834 dp = digraphdefault; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1835 for (i = 0; use_defaults ? dp->char1 != NUL |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1836 : i < user_digraphs.ga_len; ++i) |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1837 { |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1838 if (dp->result == val) |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1839 { |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1840 r[0] = dp->char1; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1841 r[1] = dp->char2; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1842 r[2] = NUL; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1843 return r; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1844 } |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1845 ++dp; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1846 } |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1847 } |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1848 return NULL; |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1849 } |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1850 |
81c348d40312
patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents:
13121
diff
changeset
|
1851 /* |
7 | 1852 * Get a digraph. Used after typing CTRL-K on the command line or in normal |
1853 * mode. | |
1854 * Returns composed character, or NUL when ESC was used. | |
1855 */ | |
1856 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1857 get_digraph( |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1858 int cmdline) // TRUE when called from the cmdline |
7 | 1859 { |
1860 int c, cc; | |
1861 | |
1862 ++no_mapping; | |
1863 ++allow_keys; | |
1389 | 1864 c = plain_vgetc(); |
7 | 1865 --no_mapping; |
1866 --allow_keys; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1867 if (c != ESC) // ESC cancels CTRL-K |
7 | 1868 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1869 if (IS_SPECIAL(c)) // insert special key code |
7 | 1870 return c; |
1871 if (cmdline) | |
1872 { | |
1873 if (char2cells(c) == 1 | |
1874 #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) | |
1875 && cmdline_star == 0 | |
1876 #endif | |
1877 ) | |
1878 putcmdline(c, TRUE); | |
1879 } | |
1880 #ifdef FEAT_CMDL_INFO | |
1881 else | |
1882 add_to_showcmd(c); | |
1883 #endif | |
1884 ++no_mapping; | |
1885 ++allow_keys; | |
1389 | 1886 cc = plain_vgetc(); |
7 | 1887 --no_mapping; |
1888 --allow_keys; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1889 if (cc != ESC) // ESC cancels CTRL-K |
7 | 1890 return getdigraph(c, cc, TRUE); |
1891 } | |
1892 return NUL; | |
1893 } | |
1894 | |
1895 /* | |
1896 * Lookup the pair "char1", "char2" in the digraph tables. | |
1897 * If no match, return "char2". | |
3263 | 1898 * If "meta_char" is TRUE and "char1" is a space, return "char2" | 0x80. |
7 | 1899 */ |
1900 static int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1901 getexactdigraph(int char1, int char2, int meta_char) |
7 | 1902 { |
1903 int i; | |
1904 int retval = 0; | |
1905 digr_T *dp; | |
1906 | |
1907 if (IS_SPECIAL(char1) || IS_SPECIAL(char2)) | |
1908 return char2; | |
1909 | |
1910 /* | |
1911 * Search user digraphs first. | |
1912 */ | |
1913 dp = (digr_T *)user_digraphs.ga_data; | |
1914 for (i = 0; i < user_digraphs.ga_len; ++i) | |
1915 { | |
1916 if ((int)dp->char1 == char1 && (int)dp->char2 == char2) | |
1917 { | |
1918 retval = dp->result; | |
1919 break; | |
1920 } | |
1921 ++dp; | |
1922 } | |
1923 | |
1924 /* | |
1925 * Search default digraphs. | |
1926 */ | |
1927 if (retval == 0) | |
1928 { | |
1929 dp = digraphdefault; | |
1930 for (i = 0; dp->char1 != 0; ++i) | |
1931 { | |
1932 if ((int)dp->char1 == char1 && (int)dp->char2 == char2) | |
1933 { | |
1934 retval = dp->result; | |
1935 break; | |
1936 } | |
1937 ++dp; | |
1938 } | |
1939 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1940 #ifdef USE_UNICODE_DIGRAPHS |
7 | 1941 if (retval != 0 && !enc_utf8) |
1942 { | |
1943 char_u buf[6], *to; | |
1944 vimconv_T vc; | |
1945 | |
1946 /* | |
1947 * Convert the Unicode digraph to 'encoding'. | |
1948 */ | |
1949 i = utf_char2bytes(retval, buf); | |
1950 retval = 0; | |
1951 vc.vc_type = CONV_NONE; | |
1952 if (convert_setup(&vc, (char_u *)"utf-8", p_enc) == OK) | |
1953 { | |
1954 vc.vc_fail = TRUE; | |
1955 to = string_convert(&vc, buf, &i); | |
1956 if (to != NULL) | |
1957 { | |
1958 retval = (*mb_ptr2char)(to); | |
1959 vim_free(to); | |
1960 } | |
1961 (void)convert_setup(&vc, NULL, NULL); | |
1962 } | |
1963 } | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1964 #endif |
7 | 1965 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1966 // Ignore multi-byte characters when not in multi-byte mode. |
7 | 1967 if (!has_mbyte && retval > 0xff) |
1968 retval = 0; | |
1969 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1970 if (retval == 0) // digraph deleted or not found |
7 | 1971 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
1972 if (char1 == ' ' && meta_char) // <space> <char> --> meta-char |
7 | 1973 return (char2 | 0x80); |
1974 return char2; | |
1975 } | |
1976 return retval; | |
1977 } | |
1978 | |
1979 /* | |
1980 * Get digraph. | |
1981 * Allow for both char1-char2 and char2-char1 | |
1982 */ | |
1983 int | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1984 getdigraph(int char1, int char2, int meta_char) |
7 | 1985 { |
1986 int retval; | |
1987 | |
3263 | 1988 if (((retval = getexactdigraph(char1, char2, meta_char)) == char2) |
7 | 1989 && (char1 != char2) |
3263 | 1990 && ((retval = getexactdigraph(char2, char1, meta_char)) == char1)) |
7 | 1991 return char2; |
1992 return retval; | |
1993 } | |
1994 | |
1995 /* | |
1996 * Add the digraphs in the argument to the digraph table. | |
1997 * format: {c1}{c2} char {c1}{c2} char ... | |
1998 */ | |
1999 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2000 putdigraph(char_u *str) |
7 | 2001 { |
2002 int char1, char2, n; | |
2003 int i; | |
2004 digr_T *dp; | |
2005 | |
2006 while (*str != NUL) | |
2007 { | |
2008 str = skipwhite(str); | |
2009 if (*str == NUL) | |
2010 return; | |
2011 char1 = *str++; | |
2012 char2 = *str++; | |
2013 if (char2 == 0) | |
2014 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15152
diff
changeset
|
2015 emsg(_(e_invarg)); |
7 | 2016 return; |
2017 } | |
2018 if (char1 == ESC || char2 == ESC) | |
2019 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15152
diff
changeset
|
2020 emsg(_("E104: Escape not allowed in digraph")); |
7 | 2021 return; |
2022 } | |
2023 str = skipwhite(str); | |
2024 if (!VIM_ISDIGIT(*str)) | |
2025 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15152
diff
changeset
|
2026 emsg(_(e_number_exp)); |
7 | 2027 return; |
2028 } | |
2029 n = getdigits(&str); | |
2030 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2031 // If the digraph already exists, replace the result. |
7 | 2032 dp = (digr_T *)user_digraphs.ga_data; |
2033 for (i = 0; i < user_digraphs.ga_len; ++i) | |
2034 { | |
2035 if ((int)dp->char1 == char1 && (int)dp->char2 == char2) | |
2036 { | |
2037 dp->result = n; | |
2038 break; | |
2039 } | |
2040 ++dp; | |
2041 } | |
2042 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2043 // Add a new digraph to the table. |
7 | 2044 if (i == user_digraphs.ga_len) |
2045 { | |
2046 if (ga_grow(&user_digraphs, 1) == OK) | |
2047 { | |
2048 dp = (digr_T *)user_digraphs.ga_data + user_digraphs.ga_len; | |
2049 dp->char1 = char1; | |
2050 dp->char2 = char2; | |
2051 dp->result = n; | |
2052 ++user_digraphs.ga_len; | |
2053 } | |
2054 } | |
2055 } | |
2056 } | |
2057 | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2058 #if defined(USE_UNICODE_DIGRAPHS) |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2059 static void |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2060 digraph_header(char *msg) |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2061 { |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2062 if (msg_col > 0) |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2063 msg_putchar('\n'); |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2064 msg_outtrans_attr((char_u *)msg, HL_ATTR(HLF_CM)); |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2065 msg_putchar('\n'); |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2066 } |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2067 #endif |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2068 |
7 | 2069 void |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2070 listdigraphs(int use_headers) |
7 | 2071 { |
2072 int i; | |
2073 digr_T *dp; | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2074 result_T previous = 0; |
7 | 2075 |
2076 msg_putchar('\n'); | |
2077 | |
2078 dp = digraphdefault; | |
2079 for (i = 0; dp->char1 != NUL && !got_int; ++i) | |
2080 { | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2081 #if defined(USE_UNICODE_DIGRAPHS) |
7 | 2082 digr_T tmp; |
2083 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2084 // May need to convert the result to 'encoding'. |
7 | 2085 tmp.char1 = dp->char1; |
2086 tmp.char2 = dp->char2; | |
2087 tmp.result = getexactdigraph(tmp.char1, tmp.char2, FALSE); | |
2088 if (tmp.result != 0 && tmp.result != tmp.char2 | |
2089 && (has_mbyte || tmp.result <= 255)) | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2090 printdigraph(&tmp, use_headers ? &previous : NULL); |
7 | 2091 #else |
2092 | |
2093 if (getexactdigraph(dp->char1, dp->char2, FALSE) == dp->result | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2094 && (has_mbyte || dp->result <= 255)) |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2095 printdigraph(dp, use_headers ? &previous : NULL); |
7 | 2096 #endif |
2097 ++dp; | |
2098 ui_breakcheck(); | |
2099 } | |
2100 | |
2101 dp = (digr_T *)user_digraphs.ga_data; | |
2102 for (i = 0; i < user_digraphs.ga_len && !got_int; ++i) | |
2103 { | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2104 #if defined(USE_UNICODE_DIGRAPHS) |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2105 if (previous >= 0 && use_headers) |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2106 digraph_header(_("Custom")); |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2107 previous = -1; |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2108 #endif |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2109 printdigraph(dp, NULL); |
7 | 2110 ui_breakcheck(); |
2111 ++dp; | |
2112 } | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2113 must_redraw = CLEAR; // clear screen, because some digraphs may be |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2114 // wrong, in which case we messed up ScreenLines |
7 | 2115 } |
2116 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
2117 static struct dg_header_entry { |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2118 int dg_start; |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2119 char *dg_header; |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2120 } header_table[] = { |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2121 {DG_START_LATIN, N_("Latin supplement")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2122 {DG_START_GREEK, N_("Greek and Coptic")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2123 {DG_START_CYRILLIC, N_("Cyrillic")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2124 {DG_START_HEBREW, N_("Hebrew")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2125 {DG_START_ARABIC, N_("Arabic")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2126 {DG_START_LATIN_EXTENDED, N_("Latin extended")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2127 {DG_START_GREEK_EXTENDED, N_("Greek extended")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2128 {DG_START_PUNCTUATION, N_("Punctuation")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2129 {DG_START_SUB_SUPER, N_("Super- and subscripts")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2130 {DG_START_CURRENCY, N_("Currency")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2131 {DG_START_OTHER1, N_("Other")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2132 {DG_START_ROMAN, N_("Roman numbers")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2133 {DG_START_ARROWS, N_("Arrows")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2134 {DG_START_MATH, N_("Mathematical operators")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2135 {DG_START_TECHNICAL, N_("Technical")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2136 {DG_START_OTHER2, N_("Other")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2137 {DG_START_DRAWING, N_("Box drawing")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2138 {DG_START_BLOCK, N_("Block elements")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2139 {DG_START_SHAPES, N_("Geometric shapes")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2140 {DG_START_SYMBOLS, N_("Symbols")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2141 {DG_START_DINGBATS, N_("Dingbats")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2142 {DG_START_CJK_SYMBOLS, N_("CJK symbols and punctuation")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2143 {DG_START_HIRAGANA, N_("Hiragana")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2144 {DG_START_KATAKANA, N_("Katakana")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2145 {DG_START_BOPOMOFO, N_("Bopomofo")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2146 {DG_START_OTHER3, N_("Other")}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2147 {0xfffffff, NULL}, |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2148 }; |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2149 |
7 | 2150 static void |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2151 printdigraph(digr_T *dp, result_T *previous) |
7 | 2152 { |
2153 char_u buf[30]; | |
2154 char_u *p; | |
2155 | |
2156 int list_width; | |
2157 | |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2158 if ((dy_flags & DY_UHEX) || has_mbyte) |
7 | 2159 list_width = 13; |
2160 else | |
2161 list_width = 11; | |
2162 | |
2163 if (dp->result != 0) | |
2164 { | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2165 #if defined(USE_UNICODE_DIGRAPHS) |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2166 if (previous != NULL) |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2167 { |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2168 int i; |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2169 |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2170 for (i = 0; header_table[i].dg_header != NULL; ++i) |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2171 if (*previous < header_table[i].dg_start |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2172 && dp->result >= header_table[i].dg_start |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2173 && dp->result < header_table[i + 1].dg_start) |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2174 { |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2175 digraph_header(_(header_table[i].dg_header)); |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2176 break; |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2177 } |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2178 *previous = dp->result; |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2179 } |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2180 #endif |
7 | 2181 if (msg_col > Columns - list_width) |
2182 msg_putchar('\n'); | |
2183 if (msg_col) | |
2184 while (msg_col % list_width != 0) | |
2185 msg_putchar(' '); | |
2186 | |
2187 p = buf; | |
2188 *p++ = dp->char1; | |
2189 *p++ = dp->char2; | |
2190 *p++ = ' '; | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2191 *p = NUL; |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2192 msg_outtrans(buf); |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2193 p = buf; |
7 | 2194 if (has_mbyte) |
2195 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2196 // add a space to draw a composing char on |
7 | 2197 if (enc_utf8 && utf_iscomposing(dp->result)) |
2198 *p++ = ' '; | |
2199 p += (*mb_char2bytes)(dp->result, p); | |
2200 } | |
2201 else | |
1869 | 2202 *p++ = (char_u)dp->result; |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2203 *p = NUL; |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2204 msg_outtrans_attr(buf, HL_ATTR(HLF_8)); |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
2205 p = buf; |
7 | 2206 if (char2cells(dp->result) == 1) |
2207 *p++ = ' '; | |
1869 | 2208 vim_snprintf((char *)p, sizeof(buf) - (p - buf), " %3d", dp->result); |
7 | 2209 msg_outtrans(buf); |
2210 } | |
2211 } | |
2212 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2213 #endif // FEAT_DIGRAPHS |
7 | 2214 |
2215 #if defined(FEAT_KEYMAP) || defined(PROTO) | |
2216 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2217 // structure used for b_kmap_ga.ga_data |
7 | 2218 typedef struct |
2219 { | |
2220 char_u *from; | |
2221 char_u *to; | |
2222 } kmap_T; | |
2223 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2224 #define KMAP_MAXLEN 20 // maximum length of "from" or "to" |
7 | 2225 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2226 static void keymap_unload(void); |
7 | 2227 |
2228 /* | |
1869 | 2229 * Set up key mapping tables for the 'keymap' option. |
2230 * Returns NULL if OK, an error message for failure. This only needs to be | |
2231 * used when setting the option, not later when the value has already been | |
2232 * checked. | |
7 | 2233 */ |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15152
diff
changeset
|
2234 char * |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2235 keymap_init(void) |
7 | 2236 { |
2237 curbuf->b_kmap_state &= ~KEYMAP_INIT; | |
2238 | |
2239 if (*curbuf->b_p_keymap == NUL) | |
2240 { | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2241 // Stop any active keymap and clear the table. Also remove |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2242 // b:keymap_name, as no keymap is active now. |
7 | 2243 keymap_unload(); |
1308 | 2244 do_cmdline_cmd((char_u *)"unlet! b:keymap_name"); |
7 | 2245 } |
2246 else | |
2247 { | |
2248 char_u *buf; | |
1869 | 2249 size_t buflen; |
7 | 2250 |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2251 // Source the keymap file. It will contain a ":loadkeymap" command |
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2252 // which will call ex_loadkeymap() below. |
15595
1ec942f1b648
patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2253 buflen = STRLEN(curbuf->b_p_keymap) + STRLEN(p_enc) + 14; |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
15595
diff
changeset
|
2254 buf = alloc(buflen); |
7 | 2255 if (buf == NULL) |
2256 return e_outofmem; | |
2257 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2258 // try finding "keymap/'keymap'_'encoding'.vim" in 'runtimepath' |
1869 | 2259 vim_snprintf((char *)buf, buflen, "keymap/%s_%s.vim", |
2260 curbuf->b_p_keymap, p_enc); | |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
2261 if (source_runtime(buf, 0) == FAIL) |
7 | 2262 { |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2263 // try finding "keymap/'keymap'.vim" in 'runtimepath' |
1869 | 2264 vim_snprintf((char *)buf, buflen, "keymap/%s.vim", |
2265 curbuf->b_p_keymap); | |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
2266 if (source_runtime(buf, 0) == FAIL) |
7 | 2267 { |
2268 vim_free(buf); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15152
diff
changeset
|
2269 return N_("E544: Keymap file not found"); |
7 | 2270 } |
2271 } | |
2272 vim_free(buf); | |
2273 } | |
2274 | |
2275 return NULL; | |
2276 } | |
2277 | |
2278 /* | |
2279 * ":loadkeymap" command: load the following lines as the keymap. | |
2280 */ | |
2281 void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2282 ex_loadkeymap(exarg_T *eap) |
7 | 2283 { |
2284 char_u *line; | |
2285 char_u *p; | |
2286 char_u *s; | |
2287 kmap_T *kp; | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2288 #define KMAP_LLEN 200 // max length of "to" and "from" together |
7 | 2289 char_u buf[KMAP_LLEN + 11]; |
2290 int i; | |
2291 char_u *save_cpo = p_cpo; | |
2292 | |
2293 if (!getline_equal(eap->getline, eap->cookie, getsourceline)) | |
2294 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15152
diff
changeset
|
2295 emsg(_("E105: Using :loadkeymap not in a sourced file")); |
7 | 2296 return; |
2297 } | |
2298 | |
2299 /* | |
2300 * Stop any active keymap and clear the table. | |
2301 */ | |
2302 keymap_unload(); | |
2303 | |
2304 curbuf->b_kmap_state = 0; | |
2305 ga_init2(&curbuf->b_kmap_ga, (int)sizeof(kmap_T), 20); | |
2306 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2307 // Set 'cpoptions' to "C" to avoid line continuation. |
7 | 2308 p_cpo = (char_u *)"C"; |
2309 | |
2310 /* | |
2311 * Get each line of the sourced file, break at the end. | |
2312 */ | |
2313 for (;;) | |
2314 { | |
17178
40c4cb095d53
patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2315 line = eap->getline(0, eap->cookie, 0, TRUE); |
7 | 2316 if (line == NULL) |
2317 break; | |
2318 | |
2319 p = skipwhite(line); | |
2320 if (*p != '"' && *p != NUL && ga_grow(&curbuf->b_kmap_ga, 1) == OK) | |
2321 { | |
2322 kp = (kmap_T *)curbuf->b_kmap_ga.ga_data + curbuf->b_kmap_ga.ga_len; | |
2323 s = skiptowhite(p); | |
20751
d9a2e5dcfd9f
patch 8.2.0928: many type casts are used for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
2324 kp->from = vim_strnsave(p, s - p); |
7 | 2325 p = skipwhite(s); |
2326 s = skiptowhite(p); | |
20751
d9a2e5dcfd9f
patch 8.2.0928: many type casts are used for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents:
18777
diff
changeset
|
2327 kp->to = vim_strnsave(p, s - p); |
7 | 2328 |
2329 if (kp->from == NULL || kp->to == NULL | |
839 | 2330 || STRLEN(kp->from) + STRLEN(kp->to) >= KMAP_LLEN |
2331 || *kp->from == NUL || *kp->to == NUL) | |
7 | 2332 { |
839 | 2333 if (kp->to != NULL && *kp->to == NUL) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15152
diff
changeset
|
2334 emsg(_("E791: Empty keymap entry")); |
7 | 2335 vim_free(kp->from); |
2336 vim_free(kp->to); | |
2337 } | |
2338 else | |
2339 ++curbuf->b_kmap_ga.ga_len; | |
2340 } | |
2341 vim_free(line); | |
2342 } | |
2343 | |
2344 /* | |
2345 * setup ":lnoremap" to map the keys | |
2346 */ | |
2347 for (i = 0; i < curbuf->b_kmap_ga.ga_len; ++i) | |
2348 { | |
274 | 2349 vim_snprintf((char *)buf, sizeof(buf), "<buffer> %s %s", |
7 | 2350 ((kmap_T *)curbuf->b_kmap_ga.ga_data)[i].from, |
2351 ((kmap_T *)curbuf->b_kmap_ga.ga_data)[i].to); | |
2352 (void)do_map(2, buf, LANGMAP, FALSE); | |
2353 } | |
2354 | |
2355 p_cpo = save_cpo; | |
2356 | |
2357 curbuf->b_kmap_state |= KEYMAP_LOADED; | |
2358 status_redraw_curbuf(); | |
2359 } | |
2360 | |
2361 /* | |
2362 * Stop using 'keymap'. | |
2363 */ | |
2364 static void | |
7817
83861277e6a3
commit https://github.com/vim/vim/commit/7454a06e2642d2b37afad1c5e71cec68081ca4ff
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2365 keymap_unload(void) |
7 | 2366 { |
2367 char_u buf[KMAP_MAXLEN + 10]; | |
2368 int i; | |
2369 char_u *save_cpo = p_cpo; | |
1624 | 2370 kmap_T *kp; |
7 | 2371 |
2372 if (!(curbuf->b_kmap_state & KEYMAP_LOADED)) | |
2373 return; | |
2374 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2375 // Set 'cpoptions' to "C" to avoid line continuation. |
7 | 2376 p_cpo = (char_u *)"C"; |
2377 | |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2378 // clear the ":lmap"s |
1624 | 2379 kp = (kmap_T *)curbuf->b_kmap_ga.ga_data; |
7 | 2380 for (i = 0; i < curbuf->b_kmap_ga.ga_len; ++i) |
2381 { | |
1624 | 2382 vim_snprintf((char *)buf, sizeof(buf), "<buffer> %s", kp[i].from); |
7 | 2383 (void)do_map(1, buf, LANGMAP, FALSE); |
2384 } | |
13121
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2385 keymap_clear(&curbuf->b_kmap_ga); |
7 | 2386 |
2387 p_cpo = save_cpo; | |
2388 | |
2389 ga_clear(&curbuf->b_kmap_ga); | |
2390 curbuf->b_kmap_state &= ~KEYMAP_LOADED; | |
2391 status_redraw_curbuf(); | |
2392 } | |
2393 | |
13121
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2394 void |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2395 keymap_clear(garray_T *kmap) |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2396 { |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2397 int i; |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2398 kmap_T *kp = (kmap_T *)kmap->ga_data; |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2399 |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2400 for (i = 0; i < kmap->ga_len; ++i) |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2401 { |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2402 vim_free(kp[i].from); |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2403 vim_free(kp[i].to); |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2404 } |
3321582cae78
patch 8.0.1435: memory leak in test_arabic
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
2405 } |
18777
3a68dc2a1bc1
patch 8.1.2378: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
17853
diff
changeset
|
2406 #endif // FEAT_KEYMAP |