comparison runtime/defaults.vim @ 9925:3fba3e8326a7 v7.4.2236

commit https://github.com/vim/vim/commit/920694c1b60fac8017b8909efcc24f189804a9bb Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 21 17:45:02 2016 +0200 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.
author Christian Brabandt <cb@256bit.org>
date Sun, 21 Aug 2016 18:00:07 +0200
parents 8c0b13fe60dc
children 306f72cd32c2
comparison
equal deleted inserted replaced
9924:cb0cb5358209 9925:3fba3e8326a7
1 " The default vimrc file. 1 " The default vimrc file.
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last change: 2016 Aug 20 4 " Last change: 2016 Aug 21
5 " 5 "
6 " This is loaded if no vimrc file was found. 6 " This is loaded if no vimrc file was found.
7 " Except when Vim is run with "-u NONE" or "-C". 7 " Except when Vim is run with "-u NONE" or "-C".
8 " Individual settings can be reverted with ":set option&". 8 " Individual settings can be reverted with ":set option&".
9 " Other commands can be reverted as mentioned below. 9 " Other commands can be reverted as mentioned below.
105 if !exists(":DiffOrig") 105 if !exists(":DiffOrig")
106 command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis 106 command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
107 \ | wincmd p | diffthis 107 \ | wincmd p | diffthis
108 endif 108 endif
109 109
110 if has('langmap') && exists('+langnoremap') 110 if has('langmap') && exists('+langremap')
111 " Prevent that the langmap option applies to characters that result from a 111 " Prevent that the langmap option applies to characters that result from a
112 " mapping. If unset (default), this may break plugins (but it's backward 112 " mapping. If set (default), this may break plugins (but it's backward
113 " compatible). 113 " compatible).
114 set langnoremap 114 set nolangremap
115 endif 115 endif