comparison runtime/optwin.vim @ 9852:4eea48b76d03 v7.4.2201

commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 12 18:29:59 2016 +0200 patch 7.4.2201 Problem: The sign column disappears when the last sign is deleted. Solution: Add the 'signcolumn' option. (Christian Brabandt)
author Christian Brabandt <cb@256bit.org>
date Fri, 12 Aug 2016 18:45:06 +0200
parents b2aada04d84e
children 9eaf8ef656e9
comparison
equal deleted inserted replaced
9851:eafd017d8a5a 9852:4eea48b76d03
1305 call append("$", "buflisted\twhether the buffer shows up in the buffer list") 1305 call append("$", "buflisted\twhether the buffer shows up in the buffer list")
1306 call append("$", "\t(local to buffer)") 1306 call append("$", "\t(local to buffer)")
1307 call <SID>BinOptionL("bl") 1307 call <SID>BinOptionL("bl")
1308 call append("$", "debug\tset to \"msg\" to see all error messages") 1308 call append("$", "debug\tset to \"msg\" to see all error messages")
1309 call append("$", " \tset debug=" . &debug) 1309 call append("$", " \tset debug=" . &debug)
1310 if has("signs")
1311 call append("$", "signcolumn\twhether to show the signcolumn")
1312 call append("$", "\t(local to window)")
1313 call <SID>OptionL("scl")
1314 endif
1310 if has("mzscheme") 1315 if has("mzscheme")
1311 call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads") 1316 call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads")
1312 call append("$", " \tset mzq=" . &mzq) 1317 call append("$", " \tset mzq=" . &mzq)
1313 endif 1318 endif
1314 if exists("&luadll") 1319 if exists("&luadll")