]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.552 v7.4.552
authorBram Moolenaar <Bram@vim.org>
Sat, 13 Dec 2014 23:43:54 +0000 (00:43 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 13 Dec 2014 23:43:54 +0000 (00:43 +0100)
Problem:    Langmap applies to Insert mode expression mappings.
Solution:   Check for Insert mode. (Daniel Hahler)

src/getchar.c
src/testdir/test_mapping.in
src/testdir/test_mapping.ok
src/version.c

index c9ee4d05106ffd9e6b16b5ae69461bb8a5d470ee..174cfa892fde49e9f375973cef72b03df44d68cf 100644 (file)
@@ -2145,7 +2145,7 @@ vgetorpeek(advance)
                            nolmaplen = 2;
                        else
                        {
-                           LANGMAP_ADJUST(c1, TRUE);
+                           LANGMAP_ADJUST(c1, (State & INSERT) == 0);
                            nolmaplen = 0;
                        }
 #endif
index e2572772c1d9d5dcaabe2cf9d0185bcd1b010edc..5f895a46f2179bfa547a7b0cab15499e316e0566 100644 (file)
@@ -8,6 +8,15 @@ STARTTEST
 :inoreab чкпр   vim
 GAчкпр 
 \e
+
+: " langmap should not get remapped in insert mode
+:inoremap { FAIL_ilangmap
+:set langmap=+{ langnoremap
+o+\e
+: " expr mapping with langmap
+:inoremap <expr> { "FAIL_iexplangmap"
+o+\e
+
 :/^test/,$w! test.out
 :qa!
 ENDTEST
index abdaea6a36928f6c9ea1be7e280cd6ce3d9f8646..8d949765827ecff87fd87677e5cc39a19a6cebff 100644 (file)
@@ -1,2 +1,4 @@
 test starts here:
 vim
++
++
index 6408d570770755bccca0721a61786844f65d4355..e8d75252facca3dfe1c8ccf4e0995740762e9d56 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    552,
 /**/
     551,
 /**/