diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-07 21:07:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-07 21:07:18 +0200 |
commit | acc224064033e5cea21ef7f1eefb356ca06ff11d (patch) | |
tree | bb447a8591e335b0bec96a43a7c8fa5774d741df /runtime/optwin.vim | |
parent | df44a27b53586fccfc6a3aedc89061fdd9a515ff (diff) | |
download | vim-git-acc224064033e5cea21ef7f1eefb356ca06ff11d.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 700f78f5a..045462d80 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: 2019 Nov 07 +" Last Change: 2020 Jun 02 " If there already is an option window, jump to that one. let buf = bufnr('option-window') @@ -1153,7 +1153,7 @@ call <SID>BinOptionG("warn", &warn) if has("quickfix") - call <SID>Header("running make and jumping to errors") + call <SID>Header("running make and jumping to errors (quickfix)") call append("$", "errorfile\tname of the file that contains error messages") call <SID>OptionG("ef", &ef) call append("$", "errorformat\tlist of formats for error messages") @@ -1174,6 +1174,8 @@ if has("quickfix") call append("$", "makeencoding\tencoding of the \":make\" and \":grep\" output") call append("$", "\t(global or local to buffer)") call <SID>OptionG("menc", &menc) + call append("$", "quickfixtextfunc\tfunction to display text in the quickfix window") + call <SID>OptionG("qftf", &qftf) endif |