diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-11-05 17:44:52 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-11-05 17:44:52 +0100 |
commit | 4391cf98ec3b94f33dfd053cab25ed56c787bea9 (patch) | |
tree | 66e0561154ddd7794d1b220d2b0d2e1faf3ea180 /src/option.h | |
parent | c3940c76e8248ea7f618b3f1716d754c8e981f35 (diff) | |
download | vim-git-4391cf98ec3b94f33dfd053cab25ed56c787bea9.tar.gz |
updated for version 7.4.502v7.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)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index 23cdecdf0..b03146676 100644 --- a/src/option.h +++ b/src/option.h @@ -576,6 +576,7 @@ EXTERN char_u *p_kp; /* 'keywordprg' */ EXTERN char_u *p_km; /* 'keymodel' */ #ifdef FEAT_LANGMAP EXTERN char_u *p_langmap; /* 'langmap'*/ +EXTERN int p_lnr; /* 'langnoremap' */ #endif #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG) EXTERN char_u *p_lm; /* 'langmenu' */ |