diff options
author | KunMing Xie <qqzz014@gmail.com> | 2018-01-29 05:53:53 +0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-01-28 22:53:53 +0100 |
commit | 2569fabf04fa820814f2e13ac7579c5d759327f0 (patch) | |
tree | 3f20d35ad1714a6a5a5e2d7be2429ceb415b1686 | |
parent | b251c42195eed801d7b05ac11ed803598961ba59 (diff) | |
download | rneovim-2569fabf04fa820814f2e13ac7579c5d759327f0.tar.gz rneovim-2569fabf04fa820814f2e13ac7579c5d759327f0.tar.bz2 rneovim-2569fabf04fa820814f2e13ac7579c5d759327f0.zip |
vim-patch:8.0.0427: 'makeencoding' missing from the options window (#7907)
Problem: 'makeencoding' missing from the options window.
Solution: Add the entry.
https://github.com/vim/vim/commit/ad4187e6fc9c8e1083a172852d958a70a689a75c
-rw-r--r-- | runtime/optwin.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 8f04e495e5..13d0db0390 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1087,6 +1087,9 @@ if has("quickfix") call <SID>OptionG("gp", &gp) call append("$", "grepformat\tlist of formats for output of 'grepprg'") call <SID>OptionG("gfm", &gfm) + call append("$", "makeencoding\tencoding of the \":make\" and \":grep\" output") + call append("$", "\t(global or local to buffer)") + call <SID>OptionG("menc", &menc) endif |