diff options
author | James McCoy <jamessan@jamessan.com> | 2017-12-17 20:15:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-17 20:15:12 -0500 |
commit | e6f8b105b00f706ddb8b790a24e37d50711d8dcb (patch) | |
tree | b3208fd9191d6a6c0d257b39ff3a6880ec12f804 /src/nvim/options.lua | |
parent | cca6d4b2674304d544b3880a616fd2ca7df2b891 (diff) | |
parent | db0685a663a7d86d960f22e18f4e8e5041f80833 (diff) | |
download | rneovim-e6f8b105b00f706ddb8b790a24e37d50711d8dcb.tar.gz rneovim-e6f8b105b00f706ddb8b790a24e37d50711d8dcb.tar.bz2 rneovim-e6f8b105b00f706ddb8b790a24e37d50711d8dcb.zip |
Merge pull request #7736 from jamessan/vim-8.0.0420
[RFC] vim-patch:8.0.0420: text garbled when the system encoding differs from 'encoding'
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 45efd49391..35baaf948f 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1457,6 +1457,13 @@ return { defaults={if_true={vi=""}} }, { + full_name='makeencoding', abbreviation='menc', + type='string', scope={'global', 'buffer'}, + vi_def=true, + varname='p_menc', + defaults={if_true={vi=""}} + }, + { full_name='makeprg', abbreviation='mp', type='string', scope={'global', 'buffer'}, secure=true, |