0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00
vim/runtime/autoload/ccomplete.vim

198 lines
5.6 KiB
VimL
Raw Normal View History

2005-09-01 20:46:49 +00:00
" Vim completion script
" Language: C
" Maintainer: Bram Moolenaar <Bram@vim.org>
2005-09-09 19:52:02 +00:00
" Last Change: 2005 Sep 09
2005-09-01 20:46:49 +00:00
2005-09-09 19:52:02 +00:00
" This function is used for the 'occultfunc' option.
2005-09-01 20:46:49 +00:00
function! ccomplete#Complete(findstart, base)
if a:findstart
2005-09-07 21:21:14 +00:00
" Locate the start of the item, including "." and "->".
2005-09-01 20:46:49 +00:00
let line = getline('.')
let start = col('.') - 1
while start > 0
if line[start - 1] =~ '\w\|\.'
let start -= 1
elseif start > 1 && line[start - 2] == '-' && line[start - 1] == '>'
let start -= 2
else
break
endif
endwhile
return start
endif
2005-09-07 21:21:14 +00:00
" Return list of matches.
" Split item in words, keep empty word after "." or "->".
" "aa" -> ['aa'], "aa." -> ['aa', ''], "aa.bb" -> ['aa', 'bb'], etc.
let items = split(a:base, '\.\|->', 1)
if len(items) <= 1
2005-09-01 20:46:49 +00:00
" Only one part, no "." or "->": complete from tags file.
2005-09-07 21:21:14 +00:00
" When local completion is wanted CTRL-N would have been used.
return map(taglist('^' . a:base), 'v:val["name"]')
2005-09-01 20:46:49 +00:00
endif
2005-09-05 22:14:46 +00:00
2005-09-09 19:52:02 +00:00
" Find the variable items[0].
" 1. in current function (like with "gd")
" 2. in tags file(s) (like with ":tag")
" 3. in current file (like with "gD")
let res = []
if searchdecl(items[0]) == 0
2005-09-05 22:14:46 +00:00
" Found, now figure out the type.
" TODO: join previous line if it makes sense
let line = getline('.')
let col = col('.')
2005-09-09 19:52:02 +00:00
let res = ccomplete#Nextitem(strpart(line, 0, col), items[1:])
endif
if len(res) == 0
" Find the variable in the tags file(s)
2005-09-07 21:21:14 +00:00
let diclist = taglist('^' . items[0] . '$')
let res = []
2005-09-05 22:14:46 +00:00
for i in range(len(diclist))
2005-09-09 19:52:02 +00:00
" New ctags has the "typename" field.
if has_key(diclist[i], 'typename')
call extend(res, ccomplete#StructMembers(diclist[i]['typename'], items[1:]))
endif
" For a variable use the command, which must be a search pattern that
" shows the declaration of the variable.
2005-09-05 22:14:46 +00:00
if diclist[i]['kind'] == 'v'
let line = diclist[i]['cmd']
if line[0] == '/' && line[1] == '^'
2005-09-07 21:21:14 +00:00
let col = match(line, items[0])
2005-09-09 19:52:02 +00:00
call extend(res, ccomplete#Nextitem(strpart(line, 2, col - 2), items[1:])
2005-09-05 22:14:46 +00:00
endif
endif
endfor
endif
2005-09-09 19:52:02 +00:00
if len(res) == 0 && searchdecl(items[0], 1) == 0
" Found, now figure out the type.
" TODO: join previous line if it makes sense
let line = getline('.')
let col = col('.')
let res = ccomplete#Nextitem(strpart(line, 0, col), items[1:])
endif
" The basetext is up to the last "." or "->" and won't be changed. The
" matching members are concatenated to this.
let basetext = matchstr(a:base, '.*\(\.\|->\)')
return map(res, 'basetext . v:val')
2005-09-07 21:21:14 +00:00
endfunc
2005-09-09 19:52:02 +00:00
" Find composing type in "lead" and match items[0] with it.
" Repeat this recursively for items[1], if it's there.
" Return the list of matches.
function! ccomplete#Nextitem(lead, items)
2005-09-05 22:14:46 +00:00
2005-09-07 21:21:14 +00:00
" Use the text up to the variable name and split it in tokens.
let tokens = split(a:lead, '\s\+\|\<')
" Try to recognize the type of the variable. This is rough guessing...
2005-09-09 19:52:02 +00:00
let res = []
2005-09-07 21:21:14 +00:00
for tidx in range(len(tokens))
2005-09-09 19:52:02 +00:00
" Recognize "struct foobar" and "union foobar".
if (tokens[tidx] == 'struct' || tokens[tidx] == 'union') && tidx + 1 < len(tokens)
let res = ccomplete#StructMembers(tokens[tidx] . ':' . tokens[tidx + 1], a:items)
2005-09-05 22:14:46 +00:00
break
endif
2005-09-07 21:21:14 +00:00
2005-09-09 19:52:02 +00:00
" TODO: add more reserved words
if index(['int', 'float', 'static', 'unsigned', 'extern'], tokens[tidx]) >= 0
continue
endif
" Use the tags file to find out if this is a typedef.
2005-09-07 21:21:14 +00:00
let diclist = taglist('^' . tokens[tidx] . '$')
for i in range(len(diclist))
2005-09-09 19:52:02 +00:00
" New ctags has the "typename" field.
if has_key(diclist[i], 'typename')
call extend(res, ccomplete#StructMembers(diclist[i]['typename'], a:items))
continue
endif
" For old ctags we only recognize "typedef struct foobar" in the tags
" file command.
2005-09-07 21:21:14 +00:00
let cmd = diclist[i]['cmd']
let ci = matchend(cmd, 'typedef\s\+struct\s\+')
if ci > 1
let name = matchstr(cmd, '\w*', ci)
2005-09-09 19:52:02 +00:00
call extend(res, ccomplete#StructMembers('struct:' . name, a:items))
2005-09-07 21:21:14 +00:00
endif
endfor
2005-09-09 19:52:02 +00:00
if len(res) > 0
2005-09-07 21:21:14 +00:00
break
2005-09-05 22:14:46 +00:00
endif
2005-09-09 19:52:02 +00:00
endfor
return res
endfunction
2005-09-07 21:21:14 +00:00
2005-09-09 19:52:02 +00:00
" Return a list with resulting matches
function! ccomplete#StructMembers(typename, items)
" Todo: What about local structures?
let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
if fnames == ''
return [[], []]
endif
let typename = a:typename
let qflist = []
while 1
exe 'silent! vimgrep /\t' . typename . '\>/j ' . fnames
let qflist = getqflist()
if len(qflist) > 0 || match(typename, "::") < 0
break
endif
" No match for "struct:context::name", remove "context::" and try again.
let typename = substitute(typename, ':[^:]*::', ':', '')
endwhile
let members = []
let taglines = []
for l in qflist
let memb = matchstr(l['text'], '[^\t]*')
if memb =~ '^' . a:items[0]
call add(members, memb)
call add(taglines, l['text'])
endif
2005-09-05 22:14:46 +00:00
endfor
2005-09-07 21:21:14 +00:00
if len(members) > 0
2005-09-09 19:52:02 +00:00
" No further items, return the result.
2005-09-07 21:21:14 +00:00
if len(a:items) == 1
2005-09-09 19:52:02 +00:00
return members
2005-09-07 21:21:14 +00:00
endif
" More items following. For each of the possible members find the
" matching following members.
let res = []
for i in range(len(members))
let line = taglines[i]
2005-09-09 19:52:02 +00:00
let e = matchend(line, '\ttypename:')
if e > 0
" Use typename field
let name = matchstr(line, '[^\t]*', e)
call extend(res, ccomplete#StructMembers(name, a:items[1:]))
else
let s = match(line, '\t\zs/^')
if s > 0
let e = match(line, members[i], s)
if e > 0
call extend(res, ccomplete#Nextitem(strpart(line, s, e - s), a:items[1:]))
endif
2005-09-07 21:21:14 +00:00
endif
endif
endfor
return res
endif
" Failed to find anything.
return []
2005-09-01 20:46:49 +00:00
endfunction