diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-08 22:15:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-08 22:15:18 +0200 |
commit | 088e8e3443520dec91a384081e66445a104810bb (patch) | |
tree | b62aaab6a03cf2af1f9a8dbce453e7deb0155291 /runtime/optwin.vim | |
parent | a576f50662a7eb8cb14254ffba15fdd9114b86e1 (diff) | |
download | vim-git-088e8e3443520dec91a384081e66445a104810bb.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 47a1438fb..eec2d1e69 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 Jul 18 +" Last Change: 2019 Aug 01 " If there already is an option window, jump to that one. let buf = bufnr('option-window') @@ -1176,6 +1176,8 @@ if has("win32") || has("osfiletype") if has("win32") call append("$", "shellslash\tuse forward slashes in file names; for Unix-like shells") call <SID>BinOptionG("ssl", &ssl) + call append("$", "completeslash\tspecifies slash/backslash used for completion") + call <SID>OptionG("csl", &csl) endif endif |