diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-21 17:45:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-21 17:45:02 +0200 |
commit | 920694c1b60fac8017b8909efcc24f189804a9bb (patch) | |
tree | def5ea232552ca189a8fd9e2f78c93724cf68b17 /runtime/defaults.vim | |
parent | 989f592f7ffcbafdc4ec35cee4dc65bd053e2077 (diff) | |
download | vim-920694c1b60fac8017b8909efcc24f189804a9bb.zip |
patch 7.4.2236
Problem: The 'langnoremap' option leads to double negatives. And it does
not work for the last character of a mapping.
Solution: Add 'langremap' with the opposite value. Keep 'langnoremap' for
backwards compatibility. Make it work for the last character of a
mapping. Make the test work.
Diffstat (limited to 'runtime/defaults.vim')
-rw-r--r-- | runtime/defaults.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/defaults.vim b/runtime/defaults.vim index 45a5393d3..023d64020 100644 --- a/runtime/defaults.vim +++ b/runtime/defaults.vim @@ -1,7 +1,7 @@ " The default vimrc file. " " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last change: 2016 Aug 20 +" Last change: 2016 Aug 21 " " This is loaded if no vimrc file was found. " Except when Vim is run with "-u NONE" or "-C". @@ -107,9 +107,9 @@ if !exists(":DiffOrig") \ | wincmd p | diffthis endif -if has('langmap') && exists('+langnoremap') +if has('langmap') && exists('+langremap') " Prevent that the langmap option applies to characters that result from a - " mapping. If unset (default), this may break plugins (but it's backward + " mapping. If set (default), this may break plugins (but it's backward " compatible). - set langnoremap + set nolangremap endif |