33 lines
522 B
Plaintext
33 lines
522 B
Plaintext
|
*vim-php-complete*
|
||
|
|
||
|
|
||
|
Php Code Completion
|
||
|
*******************
|
||
|
|
||
|
Php code completion uses the standard Vim code completion mechanism
|
||
|
(|vim-code-completion|) like so:
|
||
|
|
||
|
>
|
||
|
|
||
|
<?php
|
||
|
class Test {
|
||
|
function getName () {
|
||
|
}
|
||
|
function getValue () {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$test = new Test();
|
||
|
|
||
|
$test->get<C-X><C-U>
|
||
|
$test->getName()
|
||
|
?>
|
||
|
|
||
|
<
|
||
|
|
||
|
|
||
|
Note: This feature depends on the eclipse pdt (http://eclipse.org/pdt)
|
||
|
which should be installed for you when choosing php support in the
|
||
|
eclim installer.
|
||
|
|
||
|
vim:ft=eclimhelp
|