Vim Tips Wiki
Line 36: Line 36:
 
To generate your own set of files:
 
To generate your own set of files:
   
wget http://pastebin.com/pastebin.php?dl=f64c725dd -O parser2.php
+
* wget http://pastebin.com/pastebin.php?dl=f64c725dd -O parser2.php
svn co http://svn.php.net/repository/phpdoc/modules/doc-en phpdoc (or whatever documentation you want, for example doc-jp)
+
* svn co http://svn.php.net/repository/phpdoc/modules/doc-en phpdoc (or whatever documentation you want, for example doc-jp)
sudo apt-get install pear (on debian based distros)
+
* sudo apt-get install pear (on debian based distros)
mkdir out
+
* mkdir out
php parser2.php
+
* php parser2.php
   
 
That's all, you'll get your documentation on the "out" folder
 
That's all, you'll get your documentation on the "out" folder

Revision as of 23:14, 23 September 2009

Tip 826 Printable Monobook Previous Next

created November 20, 2004 · complexity intermediate · author Jörn Horstmann · version 6.0


Download http://planetxml.de/php_manual.txt and put it into your vim/doc folder, then run :helptags [path to vim/doc]. Documentation for PHP functions can be shown by pressing K while the cursor is on a function name.

The manual was created using a modified version of script found at http://www.phpvolcano.com/articles/manual/index.php.

Comments

There is a new version available at http://blog.planetxml.de/uploads/vim-php-manual.tgz

I added more text and examples from the manual and it is now split into one file per function. Installation has also changed, you have to create a folder named 'doc' somewhere and add this to your runtimepath. For example unpack it to c:\program\vim\php\doc and add this to your .vimrc: runtimepath+=c:\program\vim\php


I found it necessary to unset keywordprg (which I did in ftplugin/php.vim) so that the K defaults to the :help command (rather than :!man).



Based on the information found here (http://blog.planetxml.de/archives/16-PHP-Manual-in-VIM-einbinden.html) I generated a new set of files, updated from the latest cvs phpdoc. The new manual includes all new features found in php 5.3.

Download: http://www.interpotential.com/downloads/vim/vim-php-manual.tar.gz



To generate your own set of files:

That's all, you'll get your documentation on the "out" folder