forked from vim-scripts/PDV--phpDocumentor-for-Vim
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME
81 lines (62 loc) · 2.67 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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