comparison src/option.c @ 6339:7b28dc1d756e v7.4.502

updated for version 7.4.502 Problem: Language mapping also applies to mapped characters. Solution: Add the 'langnoremap' option, when on 'langmap' does not apply to mapped characters. (Christian Brabandt)
author Bram Moolenaar <bram@vim.org>
date Wed, 05 Nov 2014 17:44:52 +0100
parents c0d93d67572b
children 762ab69c2d13
comparison
equal deleted inserted replaced
6338:7ec3ce5f0af1 6339:7b28dc1d756e
1689 (char_u *)&p_lm, PV_NONE, 1689 (char_u *)&p_lm, PV_NONE,
1690 #else 1690 #else
1691 (char_u *)NULL, PV_NONE, 1691 (char_u *)NULL, PV_NONE,
1692 #endif 1692 #endif
1693 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT}, 1693 {(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
1694 {"langnoremap", "lnr", P_BOOL|P_VI_DEF,
1695 #ifdef FEAT_LANGMAP
1696 (char_u *)&p_lnr, PV_NONE,
1697 #else
1698 (char_u *)NULL, PV_NONE,
1699 #endif
1700 {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
1694 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL, 1701 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL,
1695 #ifdef FEAT_WINDOWS 1702 #ifdef FEAT_WINDOWS
1696 (char_u *)&p_ls, PV_NONE, 1703 (char_u *)&p_ls, PV_NONE,
1697 #else 1704 #else
1698 (char_u *)NULL, PV_NONE, 1705 (char_u *)NULL, PV_NONE,