Skip to content

Commit

Permalink
Fixing bug with Php Doc Block Generation
Browse files Browse the repository at this point in the history
  • Loading branch information
spf13 committed May 19, 2011
1 parent 6e2fbff commit e45563f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ftplugin/php/doc.vim
Expand Up @@ -83,6 +83,7 @@ let g:pdv_cfg_CommentHead = "/**"
let g:pdv_cfg_Comment1 = " * "
let g:pdv_cfg_Commentn = " * "
let g:pdv_cfg_CommentTail = " */"
let g:pdv_cfg_CommentEnd = "/* }}} */"
let g:pdv_cfg_CommentSingle = "//"

" Default values
Expand Down Expand Up @@ -236,7 +237,7 @@ func! PhpDoc()
let l:result = PhpDocFunc()

elseif l:line =~ g:pdv_re_funcend
let l:result = PhpDocFuncEnd()
let l:result = PhpDocFuncEnd()

elseif l:line =~ g:pdv_re_attribute
let l:result = PhpDocVar()
Expand Down

0 comments on commit e45563f

Please sign in to comment.