From 2569fabf04fa820814f2e13ac7579c5d759327f0 Mon Sep 17 00:00:00 2001 From: KunMing Xie Date: Mon, 29 Jan 2018 05:53:53 +0800 Subject: [PATCH] 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 --- runtime/optwin.vim | 3 +++ 1 file changed, 3 insertions(+) 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 OptionG("gp", &gp) call append("$", "grepformat\tlist of formats for output of 'grepprg'") call OptionG("gfm", &gfm) + call append("$", "makeencoding\tencoding of the \":make\" and \":grep\" output") + call append("$", "\t(global or local to buffer)") + call OptionG("menc", &menc) endif