diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-02-02 07:00:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-02 07:00:45 +0800 |
commit | 0985e784d8dce58748343207e176bf61303b7d68 (patch) | |
tree | 8e588fed7014d384b718bfbfcce4343e99e46962 /src/nvim/digraph.c | |
parent | 096ae3bfd7075dce69c70182ccedcd6d33e66d31 (diff) | |
download | rneovim-0985e784d8dce58748343207e176bf61303b7d68.tar.gz rneovim-0985e784d8dce58748343207e176bf61303b7d68.tar.bz2 rneovim-0985e784d8dce58748343207e176bf61303b7d68.zip |
vim-patch:9.1.1065: no digraph for "Approaches the limit" (#32289)
Problem: no digraph for "Approaches the limit"
Solution: Add the digraph using .= (Hans Ginzel)
Add digraph Approaches the Limit
≐ U+2250 https://www.fileformat.info/info/unicode/char/2250/index.htm
closes: vim/vim#16508
https://github.com/vim/vim/commit/3a621188ee52badfe7aa783db12588a78dcd8ed6
Co-authored-by: Hans Ginzel <hans@matfyz.cz>
Diffstat (limited to 'src/nvim/digraph.c')
-rw-r--r-- | src/nvim/digraph.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/digraph.c b/src/nvim/digraph.c index 326e929fb6..f32123e686 100644 --- a/src/nvim/digraph.c +++ b/src/nvim/digraph.c @@ -1023,6 +1023,7 @@ static digr_T digraphdefault[] = { '?', '=', 0x2245 }, { '?', '2', 0x2248 }, { '=', '?', 0x224c }, + { '.', '=', 0x2250 }, { 'H', 'I', 0x2253 }, { '!', '=', 0x2260 }, { '=', '3', 0x2261 }, |