File tree 5 files changed +11
-3
lines changed
5 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
- *digraph.txt* For Vim version 9.1. Last change: 2023 Oct 20
1
+ *digraph.txt* For Vim version 9.1. Last change: 2025 Feb 02
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -125,8 +125,8 @@ see them.
125
125
126
126
On most systems Vim uses the same digraphs. They work for the Unicode and
127
127
ISO-8859-1 character sets. These default digraphs are taken from the RFC1345
128
- mnemonics. To make it easy to remember the mnemonic, the second character has
129
- a standard meaning:
128
+ mnemonics (with some additions) . To make it easy to remember the mnemonic,
129
+ the second character has a standard meaning:
130
130
131
131
char name char meaning ~
132
132
Exclamation mark ! Grave
@@ -1075,6 +1075,7 @@ char digraph hex dec official name ~
1075
1075
≅ ?= 2245 8773 APPROXIMATELY EQUAL TO
1076
1076
≈ ?2 2248 8776 ALMOST EQUAL TO
1077
1077
≌ =? 224C 8780 ALL EQUAL TO
1078
+ ≐ .= 2250 8784 APPROACHES THE LIMIT
1078
1079
≓ HI 2253 8787 IMAGE OF OR APPROXIMATELY EQUAL TO
1079
1080
≠ != 2260 8800 NOT EQUAL TO
1080
1081
≡ =3 2261 8801 IDENTICAL TO
Original file line number Diff line number Diff line change @@ -41635,6 +41635,7 @@ Changed~
41635
41635
"preinsert" - highlight to be inserted values
41636
41636
- add |dist#vim9#Launch()| and |dist#vim9#Open()| to the |vim-script-library|
41637
41637
and decouple it from |netrw|
41638
+ - new digraph "APPROACHES THE LIMIT" using ".="
41638
41639
41639
41640
*added-9.2*
41640
41641
Added ~
Original file line number Diff line number Diff line change @@ -997,6 +997,7 @@ static digr_T digraphdefault[] = {
997
997
{'?' , '=' , 0x2245 },
998
998
{'?' , '2' , 0x2248 },
999
999
{'=' , '?' , 0x224c },
1000
+ {'.' , '=' , 0x2250 },
1000
1001
{'H' , 'I' , 0x2253 },
1001
1002
{'!' , '=' , 0x2260 },
1002
1003
{'=' , '3' , 0x2261 },
Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ func Test_digraphs()
40
40
" Quadruple prime
41
41
call Put_Dig (" '4" )
42
42
call assert_equal (" ⁗" , getline (' .' ))
43
+ " APPROACHES THE LIMIT
44
+ call Put_Dig (" .=" )
45
+ call assert_equal (" ≐" , getline (' .' ))
43
46
" Not a digraph
44
47
call Put_Dig (" a\<bs> " )
45
48
call Put_Dig (" \<bs> a" )
Original file line number Diff line number Diff line change @@ -704,6 +704,8 @@ static char *(features[]) =
704
704
705
705
static int included_patches [] =
706
706
{ /* Add new patch number below this line */
707
+ /**/
708
+ 1065 ,
707
709
/**/
708
710
1064 ,
709
711
/**/
You can’t perform that action at this time.
0 commit comments