mirror of
https://github.com/vim/vim.git
synced 2025-07-24 10:45:12 -04:00
patch 8.0.0427: 'makeencoding' missing from the options window
Problem: 'makeencoding' missing from the options window. Solution: Add the entry.
This commit is contained in:
parent
300af82eca
commit
ad4187e6fc
@ -1,7 +1,7 @@
|
|||||||
" These commands create the option window.
|
" These commands create the option window.
|
||||||
"
|
"
|
||||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
" 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 there already is an option window, jump to that one.
|
||||||
if bufwinnr("option-window") > 0
|
if bufwinnr("option-window") > 0
|
||||||
@ -1131,6 +1131,9 @@ if has("quickfix")
|
|||||||
call <SID>OptionG("gp", &gp)
|
call <SID>OptionG("gp", &gp)
|
||||||
call append("$", "grepformat\tlist of formats for output of 'grepprg'")
|
call append("$", "grepformat\tlist of formats for output of 'grepprg'")
|
||||||
call <SID>OptionG("gfm", &gfm)
|
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
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -764,6 +764,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
427,
|
||||||
/**/
|
/**/
|
||||||
426,
|
426,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user