Last Updated: February 25, 2016
·
1.966K
· alexparamonov

PHPDoc and VIM

Vim also can add documentation to your php code.
Add plugin via vundle or any other bundler (see plugin docs for details):

Bundle 'vexxor/phpdoc.vim'

and map it in your .vimrc like this:

" PHP doc
noremap <leader>pd :call PhpDoc()<CR>