diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-16 18:30:08 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-16 18:30:08 +0000 |
commit | b21e5843e53d3582df5f521f57e7e52e83d51d10 (patch) | |
tree | 6b542fe50eb62f693046067880e416e8b149b2eb /runtime/autoload/phpcomplete.vim | |
parent | 99ebf04cf6acdd2b10d670e1cd6be4eae17333cf (diff) | |
download | vim-b21e5843e53d3582df5f521f57e7e52e83d51d10.zip |
updated for version 7.0e
Diffstat (limited to 'runtime/autoload/phpcomplete.vim')
-rw-r--r-- | runtime/autoload/phpcomplete.vim | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/runtime/autoload/phpcomplete.vim b/runtime/autoload/phpcomplete.vim index 8cb4db036..1953aa2f8 100644 --- a/runtime/autoload/phpcomplete.vim +++ b/runtime/autoload/phpcomplete.vim @@ -1,15 +1,14 @@ " Vim completion script " Language: PHP " Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) -" Last Change: 2006 Apr 05 +" Last Change: 2006 Apr 15 " " TODO: " - Class aware completion: -" a) additional analize of tags file(s) -" b) "live" parsing of data, maybe with caching +" a) caching? " - Switching to HTML (XML?) completion (SQL) inside of phpStrings -" - allow also for XML completion -" - better 'info', 'menu' +" - allow also for XML completion <- better do html_flavor for HTML +" completion " - outside of <?php?> getting parent tag may cause problems. Heh, even in " perfect conditions GetLastOpenTag doesn't cooperate... Inside of " phpStrings this can be even a bonus but outside of <?php?> it is not the @@ -563,12 +562,13 @@ function! phpcomplete#GetClassName(scontext) " {{{ exe 'silent! vimgrep /^'.object.'.*\$'.object.'.*=\s*new\s\+.*\tv\(\t\|$\)/j '.fnames let qflist = getqflist() if len(qflist) == 0 - return [] + return '' + else + " In all properly managed projects it should be one item list, even if it + " *is* longer we cannot solve conflicts, assume it is first element + let classname = matchstr(qflist[0]['text'], '=\s*new\s\+\zs[a-zA-Z_0-9\x7f-\xff]\+\ze') + return classname endif - " In all properly managed projects it should be one item list, even if it - " *is* longer we cannot solve conflicts, assume it is first element - let classname = matchstr(qflist[0]['text'], '=\s*new\s\+\zs[a-zA-Z_0-9\x7f-\xff]\+\ze') - return classname endfunction " }}} @@ -577,7 +577,7 @@ function! phpcomplete#GetClassLocation(classname) " {{{ for fname in tagfiles() let fhead = fnamemodify(fname, ":h") if fhead != '' - let psep = '/' + let psep = '/' " Note: slash is potential problem! let fhead .= psep endif let fname = escape(fname, " \\") @@ -587,9 +587,10 @@ function! phpcomplete#GetClassLocation(classname) " {{{ let classlocation = matchstr(qflist[0]['text'], '\t\zs\f\+\ze\t') " And only one class location if classlocation != '' - let pset = '/' " Note: slash is potential problem! let classlocation = fhead.classlocation return classlocation + else + return '' endif endfor |