vim-patch:8.2.1635: no digraph for 0x2022 BULLET #12876

Problem:    No digraph for 0x2022 BULLET.
Solution:   Use "oo". (Hans Ginzel, closes vim/vim#6904)
57ad94c5a9
This commit is contained in:
Jan Edmund Lazo 2020-09-08 23:45:27 -04:00 committed by GitHub
parent aa45579206
commit df6b49b4ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -913,6 +913,7 @@ char digraph hex dec official name ~
‟ 9" 201F 8223 DOUBLE HIGH-REVERSED-9 QUOTATION MARK ‟ 9" 201F 8223 DOUBLE HIGH-REVERSED-9 QUOTATION MARK
† /- 2020 8224 DAGGER † /- 2020 8224 DAGGER
‡ /= 2021 8225 DOUBLE DAGGER ‡ /= 2021 8225 DOUBLE DAGGER
• oo 2022 8226 BULLET
‥ .. 2025 8229 TWO DOT LEADER ‥ .. 2025 8229 TWO DOT LEADER
… ,. 2026 8230 HORIZONTAL ELLIPSIS … ,. 2026 8230 HORIZONTAL ELLIPSIS
‰ %0 2030 8240 PER MILLE SIGN ‰ %0 2030 8240 PER MILLE SIGN

View File

@ -856,6 +856,7 @@ static digr_T digraphdefault[] =
{ '9', '"', 0x201f }, { '9', '"', 0x201f },
{ '/', '-', 0x2020 }, { '/', '-', 0x2020 },
{ '/', '=', 0x2021 }, { '/', '=', 0x2021 },
{ 'o', 'o', 0x2022 },
{ '.', '.', 0x2025 }, { '.', '.', 0x2025 },
{ ',', '.', 0x2026 }, { ',', '.', 0x2026 },
{ '%', '0', 0x2030 }, { '%', '0', 0x2030 },