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 /test/old/testdir | |
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 'test/old/testdir')
-rw-r--r-- | test/old/testdir/test_digraph.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/old/testdir/test_digraph.vim b/test/old/testdir/test_digraph.vim index 9c32b85f61..0a71cbba99 100644 --- a/test/old/testdir/test_digraph.vim +++ b/test/old/testdir/test_digraph.vim @@ -40,6 +40,9 @@ func Test_digraphs() " Quadruple prime call Put_Dig("'4") call assert_equal("⁗", getline('.')) + " APPROACHES THE LIMIT + call Put_Dig(".=") + call assert_equal("≐", getline('.')) " Not a digraph call Put_Dig("a\<bs>") call Put_Dig("\<bs>a") |