comparison runtime/optwin.vim @ 9536:b2aada04d84e v7.4.2048

commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 16 14:47:36 2016 +0200 patch 7.4.2048 Problem: There is still code and help for unsupported systems. Solution: Remove the code and text. (Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Jul 2016 15:00:07 +0200
parents 5bb5569bec60
children 4eea48b76d03
comparison
equal deleted inserted replaced
9535:eb813d0c8346 9536:b2aada04d84e
538 call <SID>BinOptionG("ek", &ek) 538 call <SID>BinOptionG("ek", &ek)
539 call append("$", "scrolljump\tminimal number of lines to scroll at a time") 539 call append("$", "scrolljump\tminimal number of lines to scroll at a time")
540 call append("$", " \tset sj=" . &sj) 540 call append("$", " \tset sj=" . &sj)
541 call append("$", "ttyscroll\tmaximum number of lines to use scrolling instead of redrawing") 541 call append("$", "ttyscroll\tmaximum number of lines to use scrolling instead of redrawing")
542 call append("$", " \tset tsl=" . &tsl) 542 call append("$", " \tset tsl=" . &tsl)
543 if has("gui") || has("msdos") || has("win32") 543 if has("gui") || has("win32")
544 call append("$", "guicursor\tspecifies what the cursor looks like in different modes") 544 call append("$", "guicursor\tspecifies what the cursor looks like in different modes")
545 call <SID>OptionG("gcr", &gcr) 545 call <SID>OptionG("gcr", &gcr)
546 endif 546 endif
547 if has("title") 547 if has("title")
548 let &title = s:old_title 548 let &title = s:old_title
1014 call <SID>BinOptionG("ar", &ar) 1014 call <SID>BinOptionG("ar", &ar)
1015 call append("$", "patchmode\tkeep oldest version of a file; specifies file name extension") 1015 call append("$", "patchmode\tkeep oldest version of a file; specifies file name extension")
1016 call <SID>OptionG("pm", &pm) 1016 call <SID>OptionG("pm", &pm)
1017 call append("$", "fsync\tforcibly sync the file to disk after writing it") 1017 call append("$", "fsync\tforcibly sync the file to disk after writing it")
1018 call <SID>BinOptionG("fs", &fs) 1018 call <SID>BinOptionG("fs", &fs)
1019 if !has("msdos") 1019 call append("$", "shortname\tuse 8.3 file names")
1020 call append("$", "shortname\tuse 8.3 file names") 1020 call append("$", "\t(local to buffer)")
1021 call append("$", "\t(local to buffer)") 1021 call <SID>BinOptionL("sn")
1022 call <SID>BinOptionL("sn")
1023 endif
1024 call append("$", "cryptmethod\tencryption method for file writing: zip or blowfish") 1022 call append("$", "cryptmethod\tencryption method for file writing: zip or blowfish")
1025 call append("$", "\t(local to buffer)") 1023 call append("$", "\t(local to buffer)")
1026 call <SID>OptionL("cm") 1024 call <SID>OptionL("cm")
1027 1025
1028 1026
1134 call append("$", "grepformat\tlist of formats for output of 'grepprg'") 1132 call append("$", "grepformat\tlist of formats for output of 'grepprg'")
1135 call <SID>OptionG("gfm", &gfm) 1133 call <SID>OptionG("gfm", &gfm)
1136 endif 1134 endif
1137 1135
1138 1136
1139 if has("msdos") || has("os2") || has("win16") || has("win32") || has("osfiletype") 1137 if has("win32") || has("osfiletype")
1140 call <SID>Header("system specific") 1138 call <SID>Header("system specific")
1141 if has("msdos")
1142 call append("$", "bioskey\tcall the BIOS to get a keyoard character")
1143 call <SID>BinOptionG("biosk", &biosk)
1144 call append("$", "conskey\tuse direct console I/O to get a keyboard character")
1145 call <SID>BinOptionG("consk", &consk)
1146 endif
1147 if has("osfiletype") 1139 if has("osfiletype")
1148 call append("$", "osfiletype\tOS-specific information about the type of file") 1140 call append("$", "osfiletype\tOS-specific information about the type of file")
1149 call append("$", "\t(local to buffer)") 1141 call append("$", "\t(local to buffer)")
1150 call <SID>OptionL("oft") 1142 call <SID>OptionL("oft")
1151 endif 1143 endif
1152 if has("msdos") || has("os2") || has("win16") || has("win32") 1144 if has("win32")
1153 call append("$", "shellslash\tuse forward slashes in file names; for Unix-like shells") 1145 call append("$", "shellslash\tuse forward slashes in file names; for Unix-like shells")
1154 call <SID>BinOptionG("ssl", &ssl) 1146 call <SID>BinOptionG("ssl", &ssl)
1155 endif 1147 endif
1156 endif 1148 endif
1157 1149