comparison runtime/optwin.vim @ 11077:746c1e1be45f v8.0.0427

patch 8.0.0427: 'makeencoding' missing from the options window commit https://github.com/vim/vim/commit/ad4187e6fc9c8e1083a172852d958a70a689a75c Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 6 21:45:20 2017 +0100 patch 8.0.0427: 'makeencoding' missing from the options window Problem: 'makeencoding' missing from the options window. Solution: Add the entry.
author Christian Brabandt <cb@256bit.org>
date Mon, 06 Mar 2017 22:00:05 +0100
parents c391bfbdb452
children 49c12c93abf3
comparison
equal deleted inserted replaced
11076:855f6d6fa89b 11077:746c1e1be45f
1 " These commands create the option window. 1 " These commands create the option window.
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2017 Jan 28 4 " Last Change: 2017 Mar 06
5 5
6 " If there already is an option window, jump to that one. 6 " If there already is an option window, jump to that one.
7 if bufwinnr("option-window") > 0 7 if bufwinnr("option-window") > 0
8 let s:thiswin = winnr() 8 let s:thiswin = winnr()
9 while 1 9 while 1
1129 call append("$", "grepprg\tprogram used for the \":grep\" command") 1129 call append("$", "grepprg\tprogram used for the \":grep\" command")
1130 call append("$", "\t(global or local to buffer)") 1130 call append("$", "\t(global or local to buffer)")
1131 call <SID>OptionG("gp", &gp) 1131 call <SID>OptionG("gp", &gp)
1132 call append("$", "grepformat\tlist of formats for output of 'grepprg'") 1132 call append("$", "grepformat\tlist of formats for output of 'grepprg'")
1133 call <SID>OptionG("gfm", &gfm) 1133 call <SID>OptionG("gfm", &gfm)
1134 call append("$", "makeencoding\tencoding of the \":make\" and \":grep\" output")
1135 call append("$", "\t(global or local to buffer)")
1136 call <SID>OptionG("menc", &menc)
1134 endif 1137 endif
1135 1138
1136 1139
1137 if has("win32") || has("osfiletype") 1140 if has("win32") || has("osfiletype")
1138 call <SID>Header("system specific") 1141 call <SID>Header("system specific")