mirror of
https://github.com/neovim/neovim.git
synced 2025-09-12 22:38:16 +00:00
vim-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.
920694c1b6
This commit is contained in:
@@ -1346,6 +1346,12 @@ return {
|
||||
varname='p_lnr',
|
||||
defaults={if_true={vi=false, vim=true}}
|
||||
},
|
||||
{
|
||||
full_name='langremap', abbreviation='lrm',
|
||||
type='bool', scope={'global'},
|
||||
varname='p_lrm',
|
||||
defaults={if_true={vi=true, vim=false}}
|
||||
},
|
||||
{
|
||||
full_name='laststatus', abbreviation='ls',
|
||||
type='number', scope={'global'},
|
||||
|
Reference in New Issue
Block a user