summaryrefslogtreecommitdiffstats
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-03-06 21:45:20 +0100
committerBram Moolenaar <Bram@vim.org>2017-03-06 21:45:20 +0100
commitad4187e6fc9c8e1083a172852d958a70a689a75c (patch)
tree736a322ad7ec9ebab3169439e8b7a7649dad0d94 /runtime/optwin.vim
parent300af82eca3dd5fec6be5516f16c9fd344ae104b (diff)
patch 8.0.0427: 'makeencoding' missing from the options windowv8.0.0427
Problem: 'makeencoding' missing from the options window. Solution: Add the entry.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r--runtime/optwin.vim5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index 362cd3d88c..2cbbd288b2 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -1,7 +1,7 @@
" These commands create the option window.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2017 Jan 28
+" Last Change: 2017 Mar 06
" If there already is an option window, jump to that one.
if bufwinnr("option-window") > 0
@@ -1131,6 +1131,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