From df6b49b4ee5a4e4d022baf68b8e1177102243160 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Tue, 8 Sep 2020 23:45:27 -0400 Subject: [PATCH] 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) https://github.com/vim/vim/commit/57ad94c5a9ee6f3626e1ec728519a8558a4346c8 --- runtime/doc/digraph.txt | 1 + src/nvim/digraph.c | 1 + 2 files changed, 2 insertions(+) diff --git a/runtime/doc/digraph.txt b/runtime/doc/digraph.txt index 7f807b5eee..271b8c2597 100644 --- a/runtime/doc/digraph.txt +++ b/runtime/doc/digraph.txt @@ -913,6 +913,7 @@ char digraph hex dec official name ~ ‟ 9" 201F 8223 DOUBLE HIGH-REVERSED-9 QUOTATION MARK † /- 2020 8224 DAGGER ‡ /= 2021 8225 DOUBLE DAGGER +• oo 2022 8226 BULLET ‥ .. 2025 8229 TWO DOT LEADER … ,. 2026 8230 HORIZONTAL ELLIPSIS ‰ %0 2030 8240 PER MILLE SIGN diff --git a/src/nvim/digraph.c b/src/nvim/digraph.c index 65d95ff158..dd32cef1e3 100644 --- a/src/nvim/digraph.c +++ b/src/nvim/digraph.c @@ -856,6 +856,7 @@ static digr_T digraphdefault[] = { '9', '"', 0x201f }, { '/', '-', 0x2020 }, { '/', '=', 0x2021 }, + { 'o', 'o', 0x2022 }, { '.', '.', 0x2025 }, { ',', '.', 0x2026 }, { '%', '0', 0x2030 },