php-eldoc
php-eldoc copied to clipboard
eldoc backend for php - displays function arguments in the minibuffer when cursor is on top of them
I get the above error when running `php-eldoc-enable`. It appears to arise from this code: ``` (when (and (fboundp 'auto-complete-mode) auto-complete-mode)... ``` This seems to fix it: ``` (when (and...
I don't have auto-complete installed and as a result I get an error at every PHP file I visit complaining about the undefined variable `auto-complete-mode`. I found the macro `bound-and-true-p`...
A few points of feedback having read through the code: 1. Perhaps it would even be possible to invoke `probe.php` using the command-line `php` executable and adjusting the PHP `include_path`...