diff options
author | Daniel Hahler <git@thequod.de> | 2019-08-26 12:22:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-26 12:22:21 +0200 |
commit | 6a21fe9fd16cfedc87b58064d09218e5c06ddd89 (patch) | |
tree | b718bbb2ab63a525aeabd0c5ac2ea27c51b8ce90 /src/nvim/digraph.c | |
parent | b069a20910826d422ecbe6b6bd0f509eb2c16301 (diff) | |
download | rneovim-6a21fe9fd16cfedc87b58064d09218e5c06ddd89.tar.gz rneovim-6a21fe9fd16cfedc87b58064d09218e5c06ddd89.tar.bz2 rneovim-6a21fe9fd16cfedc87b58064d09218e5c06ddd89.zip |
vim-patch:8.1.1923: some source files are not in a normal encoding (#10852)
Problem: Some source files are not in a normal encoding.
Solution: Convert hangulin.c from euc-kr to utf-8 and digraph.c from latin1
to utf-8. (Daniel Hahler, closes vim/vim#4731)
https://github.com/vim/vim/commit/4119309d70c7fc32637e77f2e84c185ad1768892
Diffstat (limited to 'src/nvim/digraph.c')
-rw-r--r-- | src/nvim/digraph.c | 102 |
1 files changed, 51 insertions, 51 deletions
diff --git a/src/nvim/digraph.c b/src/nvim/digraph.c index d47ad3f1c0..09b365ca12 100644 --- a/src/nvim/digraph.c +++ b/src/nvim/digraph.c @@ -1367,57 +1367,57 @@ static digr_T digraphdefault[] = { 'y', '`', 0x1ef3 }, // Vim 5.x compatible digraphs that don't conflict with the above - { '~', '!', 161 }, // ¡ - { 'c', '|', 162 }, // ¢ - { '$', '$', 163 }, // £ - { 'o', 'x', 164 }, // ¤ - currency symbol in ISO 8859-1 - { 'Y', '-', 165 }, // ¥ - { '|', '|', 166 }, // ¦ - { 'c', 'O', 169 }, // © - { '-', ',', 172 }, // ¬ - { '-', '=', 175 }, // ¯ - { '~', 'o', 176 }, // ° - { '2', '2', 178 }, // ² - { '3', '3', 179 }, // ³ - { 'p', 'p', 182 }, // ¶ - { '~', '.', 183 }, // · - { '1', '1', 185 }, // ¹ - { '~', '?', 191 }, // ¿ - { 'A', '`', 192 }, // À - { 'A', '^', 194 }, //  - { 'A', '~', 195 }, // à - { 'A', '"', 196 }, // Ä - { 'A', '@', 197 }, // Å - { 'E', '`', 200 }, // È - { 'E', '^', 202 }, // Ê - { 'E', '"', 203 }, // Ë - { 'I', '`', 204 }, // Ì - { 'I', '^', 206 }, // Î - { 'I', '"', 207 }, // Ï - { 'N', '~', 209 }, // Ñ - { 'O', '`', 210 }, // Ò - { 'O', '^', 212 }, // Ô - { 'O', '~', 213 }, // Õ - { '/', '\\', 215 }, // × - multiplication symbol in ISO 8859-1 - { 'U', '`', 217 }, // Ù - { 'U', '^', 219 }, // Û - { 'I', 'p', 222 }, // Þ - { 'a', '`', 224 }, // à - { 'a', '^', 226 }, // â - { 'a', '~', 227 }, // ã - { 'a', '"', 228 }, // ä - { 'a', '@', 229 }, // å - { 'e', '`', 232 }, // è - { 'e', '^', 234 }, // ê - { 'e', '"', 235 }, // ë - { 'i', '`', 236 }, // ì - { 'i', '^', 238 }, // î - { 'n', '~', 241 }, // ñ - { 'o', '`', 242 }, // ò - { 'o', '^', 244 }, // ô - { 'o', '~', 245 }, // õ - { 'u', '`', 249 }, // ù - { 'u', '^', 251 }, // û + { '~', '!', 161 }, // ¡ + { 'c', '|', 162 }, // ¢ + { '$', '$', 163 }, // £ + { 'o', 'x', 164 }, // ¤ - currency symbol in ISO 8859-1 + { 'Y', '-', 165 }, // Â¥ + { '|', '|', 166 }, // ¦ + { 'c', 'O', 169 }, // © + { '-', ',', 172 }, // ¬ + { '-', '=', 175 }, // ¯ + { '~', 'o', 176 }, // ° + { '2', '2', 178 }, // ² + { '3', '3', 179 }, // ³ + { 'p', 'p', 182 }, // ¶ + { '~', '.', 183 }, // · + { '1', '1', 185 }, // ¹ + { '~', '?', 191 }, // ¿ + { 'A', '`', 192 }, // À + { 'A', '^', 194 }, //  + { 'A', '~', 195 }, // à + { 'A', '"', 196 }, // Ä + { 'A', '@', 197 }, // Ã… + { 'E', '`', 200 }, // È + { 'E', '^', 202 }, // Ê + { 'E', '"', 203 }, // Ë + { 'I', '`', 204 }, // ÃŒ + { 'I', '^', 206 }, // ÃŽ + { 'I', '"', 207 }, // à + { 'N', '~', 209 }, // Ñ + { 'O', '`', 210 }, // Ã’ + { 'O', '^', 212 }, // Ô + { 'O', '~', 213 }, // Õ + { '/', '\\', 215 }, // × - multiplication symbol in ISO 8859-1 + { 'U', '`', 217 }, // Ù + { 'U', '^', 219 }, // Û + { 'I', 'p', 222 }, // Þ + { 'a', '`', 224 }, // à + { 'a', '^', 226 }, // â + { 'a', '~', 227 }, // ã + { 'a', '"', 228 }, // ä + { 'a', '@', 229 }, // Ã¥ + { 'e', '`', 232 }, // è + { 'e', '^', 234 }, // ê + { 'e', '"', 235 }, // ë + { 'i', '`', 236 }, // ì + { 'i', '^', 238 }, // î + { 'n', '~', 241 }, // ñ + { 'o', '`', 242 }, // ò + { 'o', '^', 244 }, // ô + { 'o', '~', 245 }, // õ + { 'u', '`', 249 }, // ù + { 'u', '^', 251 }, // û { 'y', '"', 255 }, // x XX { NUL, NUL, NUL } |