Skip to content

Commit 816e766

Browse files
committed
patch 8.0.0749: some unicode digraphs are hard to remember
Problem: Some unicode digraphs are hard to remember. Solution: Add alternatives with a backtick. (Chris Harding, closes #1861)
1 parent b7a8dfe commit 816e766

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

src/digraph.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1876,6 +1876,13 @@ static digr_T digraphdefault[] =
18761876
{'f', 'l', 0xfb02},
18771877
{'f', 't', 0xfb05},
18781878
{'s', 't', 0xfb06},
1879+
1880+
/* extra alternatives, easier to remember */
1881+
{'W', '`', 0x1e80},
1882+
{'w', '`', 0x1e81},
1883+
{'Y', '`', 0x1ef2},
1884+
{'y', '`', 0x1ef3},
1885+
18791886
# endif /* FEAT_MBYTE */
18801887

18811888
/* Vim 5.x compatible digraphs that don't conflict with the above */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
749,
772774
/**/
773775
748,
774776
/**/

0 commit comments

Comments
 (0)