comparison runtime/optwin.vim @ 7266:6ba7182fb7bd v7.4.941

commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 24 18:48:14 2015 +0100 patch 7.4.941 Problem: There is no way to ignore case only for tag searches. Solution: Add the 'tagcase' option. (Gary Johnson)
author Christian Brabandt <cb@256bit.org>
date Tue, 24 Nov 2015 19:00:06 +0100
parents 4e86d5700260
children 9985800f116d
comparison
equal deleted inserted replaced
7265:b985668725fa 7266:6ba7182fb7bd
287 call append("$", "taglength\tnumber of significant characters in a tag name or zero") 287 call append("$", "taglength\tnumber of significant characters in a tag name or zero")
288 call append("$", " \tset tl=" . &tl) 288 call append("$", " \tset tl=" . &tl)
289 call append("$", "tags\tlist of file names to search for tags") 289 call append("$", "tags\tlist of file names to search for tags")
290 call append("$", "\t(global or local to buffer)") 290 call append("$", "\t(global or local to buffer)")
291 call <SID>OptionG("tag", &tag) 291 call <SID>OptionG("tag", &tag)
292 call append("$", "tagcase\thow to handle case when searching in tags files:")
293 call append("$", "\t\"followic\" to follow 'ignorecase', \"ignore\" or \"match\"")
294 call append("$", "\t(global or local to buffer)")
295 call <SID>OptionG("tc", &tc)
292 call append("$", "tagrelative\tfile names in a tags file are relative to the tags file") 296 call append("$", "tagrelative\tfile names in a tags file are relative to the tags file")
293 call <SID>BinOptionG("tr", &tr) 297 call <SID>BinOptionG("tr", &tr)
294 call append("$", "tagstack\ta :tag command will use the tagstack") 298 call append("$", "tagstack\ta :tag command will use the tagstack")
295 call <SID>BinOptionG("tgst", &tgst) 299 call <SID>BinOptionG("tgst", &tgst)
296 call append("$", "showfulltag\twhen completing tags in Insert mode show more info") 300 call append("$", "showfulltag\twhen completing tags in Insert mode show more info")