summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2011-08-19 22:29:02 +0200
committerBram Moolenaar <bram@vim.org>2011-08-19 22:29:02 +0200
commitf00385dd01305455673e576776c0eebf8329cbcd (patch)
tree97f28991f279c985008ebf91fc05214a0cf9dcad
parent84b71ca20bb07ccd79412bcc4fde0a53d031776a (diff)
downloadvim-f00385dd01305455673e576776c0eebf8329cbcd.tar.gz
updated for version 7.3.285v7.3.285v7-3-285
Problem: Mapping <Char-123> no longer works. Solution: Properly check for "char-". Add a test for it.
-rw-r--r--src/misc2.c42
-rw-r--r--src/testdir/test75.in6
-rw-r--r--src/testdir/test75.ok2
-rw-r--r--src/version.c2
4 files changed, 34 insertions, 18 deletions
diff --git a/src/misc2.c b/src/misc2.c
index dbcd653c..4c05a8cb 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -2781,6 +2781,12 @@ find_special_key(srcp, modp, keycode, keep_x_key)
}
if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
bp += 3; /* skip t_xx, xx may be '-' or '>' */
+ else if (STRNICMP(bp, "char-", 5) == 0)
+ {
+ vim_str2nr(bp + 5, NULL, &l, TRUE, TRUE, NULL, NULL);
+ bp += l + 5;
+ break;
+ }
}
if (*bp == '>') /* found matching '>' */
@@ -2810,27 +2816,27 @@ find_special_key(srcp, modp, keycode, keep_x_key)
{
/* <Char-123> or <Char-033> or <Char-0x33> */
vim_str2nr(last_dash + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
- *modp = modifiers;
- *srcp = end_of_name;
- return (int)n;
+ key = (int)n;
}
-
- /*
- * Modifier with single letter, or special key name.
- */
-#ifdef FEAT_MBYTE
- if (has_mbyte)
- l = mb_ptr2len(last_dash + 1);
- else
-#endif
- l = 1;
- if (modifiers != 0 && last_dash[l + 1] == '>')
- key = PTR2CHAR(last_dash + 1);
else
{
- key = get_special_key_code(last_dash + 1);
- if (!keep_x_key)
- key = handle_x_keys(key);
+ /*
+ * Modifier with single letter, or special key name.
+ */
+#ifdef FEAT_MBYTE
+ if (has_mbyte)
+ l = mb_ptr2len(last_dash + 1);
+ else
+#endif
+ l = 1;
+ if (modifiers != 0 && last_dash[l + 1] == '>')
+ key = PTR2CHAR(last_dash + 1);
+ else
+ {
+ key = get_special_key_code(last_dash + 1);
+ if (!keep_x_key)
+ key = handle_x_keys(key);
+ }
}
/*
diff --git a/src/testdir/test75.in b/src/testdir/test75.in
index 2de7a089..5369d8a3 100644
--- a/src/testdir/test75.in
+++ b/src/testdir/test75.in
@@ -2,6 +2,7 @@
STARTTEST
:so small.vim
+:set cpo-=<
:" Test maparg() with a string result
:map foo<C-V> is<F4>foo
:vnoremap <script> <buffer> <expr> <silent> bar isbar
@@ -9,6 +10,11 @@ STARTTEST
:call append('$', string(maparg('foo<C-V>', '', 0, 1)))
:call append('$', string(maparg('bar', '', 0, 1)))
:"
+:map abc x<char-114>x
+:call append('$', maparg('abc'))
+:map abc y<S-char-114>y
+:call append('$', maparg('abc'))
+:"
:/^eof/+1,$w! test.out
:qa!
ENDTEST
diff --git a/src/testdir/test75.ok b/src/testdir/test75.ok
index 79165637..af9c96de 100644
--- a/src/testdir/test75.ok
+++ b/src/testdir/test75.ok
@@ -1,3 +1,5 @@
is<F4>foo
{'silent': 0, 'noremap': 0, 'lhs': 'foo<C-V>', 'mode': ' ', 'expr': 0, 'sid': 0, 'rhs': 'is<F4>foo', 'buffer': 0}
{'silent': 1, 'noremap': 1, 'lhs': 'bar', 'mode': 'v', 'expr': 1, 'sid': 0, 'rhs': 'isbar', 'buffer': 1}
+xrx
+yRy
diff --git a/src/version.c b/src/version.c
index 650e99f7..da8d97e0 100644
--- a/src/version.c
+++ b/src/version.c
@@ -710,6 +710,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 285,
+/**/
284,
/**/
283,