Lines Matching refs:info
166 let res = [{'match': match, 'tagline' : '', 'kind' : kind, 'info' : line}]
173 let res = [{'match': match, 'tagline' : tagline, 'kind' : kind, 'info' : line}]
265 " Turn the tag info "val" into an item for completion.
268 " such as a typedef, by not including the info that s:GetAddition() uses.
276 let res['info'] = s
294 " Use all the items in dictionary for the "info" entry.
296 let info = ''
298 let info .= k . repeat(' ', 10 - len(k))
300 let info .= substitute(matchstr(a:dict['cmd'], '/^\s*\zs.*\ze$/'), '\\\(.\)', '\1', 'g')
302 let info .= a:dict[k]
304 let info .= "\n"
306 return info
347 if has_key(a:val, 'info')
348 " Use info from Tag2item().
349 let res['info'] = a:val['info']
351 " Parse the tag line and add each part to the "info" entry.
354 let res['info'] = s