Git Product home page Git Product logo

php-documentor-vim's Introduction

This is a mirror of http://www.vim.org/scripts/script.php?script_id=1355

============================
PHP Documentor for Vim (pdv)
Version: 1.1.1
Last Change: 2011-11-19
Author: Tobias Schlitt <[email protected]>
License: Provided under the GPL (http://www.gnu.org/copyleft/gpl.html).

Copyright 2005-2011 by Tobias Schlitt <[email protected]>
Inspired by phpDoc script for Vim by Vidyut Luther (http://www.phpcult.com/).

Description:
============
This script provides functions to generate docblocks for your PHP code that
conform to the phpDocumentor format. The script currently documents:

- Classes
- Methods/Functions
- Attributes/Properties

All of those supporting all PHP 4 and 5 syntax elements.

Beside that it allows you to define default values for phpDocumentor tags
like @version (I use $Id$ here), @author, @license and so on.

For function/method parameters and attributes, the script tries to guess the
type as good as possible from PHP5 type hints or default values (array, bool,
int, string...).

You can use this script by mapping the function PhpDoc() to any
key combination. Hit this on the line where the element to document
resides and the doc block will be created directly above that line.

Installation:
=============

For example include into your .vimrc:

au BufRead,BufNewFile *.php inoremap <buffer> <C-P> :call PhpDoc()<CR>
au BufRead,BufNewFile *.php nnoremap <buffer> <C-P> :call PhpDoc()<CR>
au BufRead,BufNewFile *.php vnoremap <buffer> <C-P> :call PhpDocRange()<CR>

This will map <ctrl>+p to call the functions to create the docblocks for the
item on the line where the cursor is, or in visual mode, any applicable lines
within that range.

In your .vimrc you can also set the defaults for one or more of the PHP
docblock tags:
let g:pdv_cfg_Package = 'YourPackage'
let g:pdv_cfg_Author = 'Your Name <[email protected]>'

In you .vimrc, you can also specify the tags and the order they appear for
class docblocks:
let g:pdv_cfg_ClassTags = ["package","author","version"]

Changelog:
==========

Version 1.0.0
-------------
 * Created the initial version of this script while playing around with VIM
 scripting the first time and trying to fix Vidyut's solution, which
 resulted in a complete rewrite.

Version 1.0.1
-------------
 * Fixed issues when using tabs instead of spaces.
 * Fixed some parsing bugs when using a different coding style.

Version 1.1.0
-------------
 * Fixed bug with call-by-reference parameters.

Version 1.1.1
-------------
 * Updated implementation to allow for better defaults, handle custom sort
 order and inclusion of tags for classes
 * Corrected detection of bool var types
 * Corrected detection of float var types
 * Moved to ftplugin and updated usage instructions

php-documentor-vim's People

Contributors

blackikeeagle avatar shaggyz avatar sumpygump avatar tobys avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.