summaryrefslogtreecommitdiff
path: root/src/testdir/test75.in
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
commit792826c0c715e037d7cca4d1a671c3b325e801a0 (patch)
tree77256b5d1b1e9181a2b0df73e4a4057b528b4234 /src/testdir/test75.in
parentb8bf541f8944a9a0ea0a4b75f8d18a565f5d91d1 (diff)
downloadvim-git-792826c0c715e037d7cca4d1a671c3b325e801a0.tar.gz
updated for version 7.3.285v7.3.285
Problem: Mapping <Char-123> no longer works. Solution: Properly check for "char-". Add a test for it.
Diffstat (limited to 'src/testdir/test75.in')
-rw-r--r--src/testdir/test75.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/testdir/test75.in b/src/testdir/test75.in
index 2de7a089b..5369d8a3d 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