diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-02 16:41:18 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-02 16:41:18 +0200 |
commit | e2e220256e7e62b6b7df9ba65cd3fdf32390652b (patch) | |
tree | 7561e413d75fdb008c2bdf81dc63f31806116d5c | |
parent | df636003bf84ce94ed1e1f02a54c82069fb8b235 (diff) | |
download | rneovim-e2e220256e7e62b6b7df9ba65cd3fdf32390652b.tar.gz rneovim-e2e220256e7e62b6b7df9ba65cd3fdf32390652b.tar.bz2 rneovim-e2e220256e7e62b6b7df9ba65cd3fdf32390652b.zip |
runtime/optwin.vim: missing 'previewpopup' feature
test_options.vim fails, so we need to disable this until the feature is
implemented.
-rw-r--r-- | runtime/optwin.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index e2a1d9e8a0..51b2bbb583 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -471,8 +471,8 @@ call append("$", " \tset wmw=" . &wmw) call append("$", "helpheight\tinitial height of the help window") call append("$", " \tset hh=" . &hh) if has("quickfix") - call append("$", "previewpopup\tuse a popup window for preview") - call append("$", " \tset pvp=" . &pvp) + " call append("$", "previewpopup\tuse a popup window for preview") + " call append("$", " \tset pvp=" . &pvp) call append("$", "previewheight\tdefault height for the preview window") call append("$", " \tset pvh=" . &pvh) call append("$", "previewwindow\tidentifies the preview window") |