diff options
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 22581ed98b..eab91de3df 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -987,14 +987,6 @@ call append("$", "patchmode\tkeep oldest version of a file; specifies file name call <SID>OptionG("pm", &pm) call append("$", "fsync\tforcibly sync the file to disk after writing it") call <SID>BinOptionG("fs", &fs) -if !has("msdos") - call append("$", "shortname\tuse 8.3 file names") - call append("$", "\t(local to buffer)") - call <SID>BinOptionL("sn") -endif -call append("$", "cryptmethod\tencryption method for file writing: zip or blowfish") -call append("$", "\t(local to buffer)") -call <SID>OptionL("cm") call <SID>Header("the swap file") @@ -1107,13 +1099,8 @@ if has("quickfix") endif -if has("msdos") || has("win16") || has("win32") || has("osfiletype") +if has("msdos") || has("win16") || has("win32") call <SID>Header("system specific") - if has("osfiletype") - call append("$", "osfiletype\tOS-specific information about the type of file") - call append("$", "\t(local to buffer)") - call <SID>OptionL("oft") - endif if has("msdos") || has("win16") || has("win32") call append("$", "shellslash\tuse forward slashes in file names; for Unix-like shells") call <SID>BinOptionG("ssl", &ssl) |