You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Brett Langdon 3e80985249 setup php dev environment for emacs 12 years ago
..
README setup php dev environment for emacs 12 years ago
dir setup php dev environment for emacs 12 years ago
php-extras-autoloads.el setup php dev environment for emacs 12 years ago
php-extras-eldoc-functions.el setup php dev environment for emacs 12 years ago
php-extras-eldoc-functions.elc setup php dev environment for emacs 12 years ago
php-extras-gen-eldoc.el setup php dev environment for emacs 12 years ago
php-extras-gen-eldoc.elc setup php dev environment for emacs 12 years ago
php-extras-pkg.el setup php dev environment for emacs 12 years ago
php-extras-pkg.elc setup php dev environment for emacs 12 years ago
php-extras.el setup php dev environment for emacs 12 years ago
php-extras.elc setup php dev environment for emacs 12 years ago
php-extras.info setup php dev environment for emacs 12 years ago

README

PHP Extras

A small collection of extra features for Emacs php-mode.

Currently includes:

- php-extras-insert-previous-variable
- php-extras-eldoc-documentation-function
- Auto complete source for PHP functions based on
php-extras-eldoc-documentation-function

php-extras-insert-previous-variable

When variable names get too long or you have to juggle a lot of nested
arrays it gets cumbersome to repeat the same variables over and over
again while programming.

In example you have the code below and want to debug what value you
actually parsed to some_function(). You have point at ^ and now all you
have to write is repeat the variable...

some_function($my_array['some_level'][0]['another_level'][7]);
print_r(^);

Enter php-extras and you just hit C-c C-$ and it will insert the
previous variable (including array indexes).

If you prefix the command (i.e. C-u 3 C-c C-$) it will search back 3
variables and with negative prefix arguments it will search forward.

php-extras-eldoc-documentation-function

eldoc-mode is a nice minor mode that ships with Emacs. It will display a
function tip in the mini buffer showing the function and its arguments
for the function at point. That is if you provide a function to look up
the function definition.

php-extras provides such a function for looking up all the core PHP
functions.

The function php-extras-generate-eldoc will download the PHP function
summary PHP Subversion repository and extract the function definitions
(slow) and store them in a hash table on disk for you.

If you install php-extras as an ELPA package the hash table is already
generated for you.

Auto complete source for PHP functions based

The PHP functions extracted for php-extras-eldoc-documentation-function
is also setup as a source for auto-complete.

auto-complete already comes with a dictionary of PHP functions and will
auto complete on them using the ac-source-dictionary.

The source we provide with php-extras will hopefully be more up to date.

Installation

The easiest way to install php-extras is probably to install it via the
ELPA archive at Marmalade.

ELPA (package.el) is part of Emacs 24. For Emacs 23 see Marmalade for
installation instructions.

The version number of the ELPA package will have the date appended when
the package was build and hence the date the documentation got extracted
from php.net.

Manual installation

I really recommend that you install this package via ELPA as described
above.

If you insist on installing it manually try to follow this recipe:

- Place the folder with the files somewhere on your disk.

- Add this to your .emacs / .emacs.d/init.el:

(add-to-list 'load-path "/somewhere/on/your/disk/php-xtras")
(eval-after-load 'php-mode
(require 'php-extras))

- Either restart your Emacs or evaluate the add-to-list expression.

- Generate the hash table containing the PHP functions:

M-x load-library RET php-extras-gen-eldoc RET

M-x php-extras-generate-eldoc RET

Development of PHP Extras

PHP Extras is developed at GitHub. Feature requests, ideas, bug reports,
and pull request are more than welcome!