summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-22 20:42:04 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-22 20:42:04 +0200
commit816e7660e1efb918ad85b5c78d21b957d1bcad17 (patch)
tree2997108433654651b4420093cec144a74968ca99
parentb7a8dfeb49784145fe133496ce38703d236e4fbe (diff)
patch 8.0.0749: some unicode digraphs are hard to rememberv8.0.0749
Problem: Some unicode digraphs are hard to remember. Solution: Add alternatives with a backtick. (Chris Harding, closes #1861)
-rw-r--r--src/digraph.c7
-rw-r--r--src/version.c2
2 files changed, 9 insertions, 0 deletions
diff --git a/src/digraph.c b/src/digraph.c
index 6a57d8a93b..5e092c36f7 100644
--- a/src/digraph.c
+++ b/src/digraph.c
@@ -1876,6 +1876,13 @@ static digr_T digraphdefault[] =
{'f', 'l', 0xfb02},
{'f', 't', 0xfb05},
{'s', 't', 0xfb06},
+
+ /* extra alternatives, easier to remember */
+ {'W', '`', 0x1e80},
+ {'w', '`', 0x1e81},
+ {'Y', '`', 0x1ef2},
+ {'y', '`', 0x1ef3},
+
# endif /* FEAT_MBYTE */
/* Vim 5.x compatible digraphs that don't conflict with the above */
diff --git a/src/version.c b/src/version.c
index 0564b8ff49..486cd6fd02 100644
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 749,
+/**/
748,
/**/
747,