Eric James Michael Ritz

Results 136 comments of Eric James Michael Ritz

Also worth consideration is using the `php` executable itself, e.g. using the output of ``` sh $ php --rfunction trim ``` for generating information on `trim()`. That approach would still...

I have wanted a similar feature for use with YASnippets, so I started [such a project](https://github.com/ejmr/php-auto-yasnippets). It uses [a PHP program](https://github.com/ejmr/php-auto-yasnippets/blob/master/Create-PHP-YASnippet.php) to get information about standard library functions, which may...

@dhaley Thank you for the links and suggestion. That does look like a promising approach for implementing Eldoc support for user-defined functions. But since the PHP standard library functions do...

Thanks for the extra info @dhaley. At this point I am convinced that the best approach for adding Eldoc support will be a hybrid approach, i.e. using one approach for...

Thanks @arnested for the reply regarding php-extras. The more I think about it, the more I am starting to like the idea of using a prebuilt table of information for...

> I just discovered pman -- man pages for php functions -- and wrote a "describe-function" derived function that might be of interest in the pursuit of making php in...

I wonder if we should consider incorporating the program `pman` as a fallback to show man-page style information about built-in functions.

> I apologize if php-mode was only intended to use the four styles mentioned in the readme, but I know for certain I indent my code in Whitesmith style, so...

@ahonnecke There is now a branch called `fix-psr2-indent-inside-methods`. Could you please do me the favor of fetching the latest code and testing out that change? I do not have a...

> ...but had the side effect of indenting other code that should not be indented. Yeah, that's exactly what I was worried would happen, heh. Thank you for testing it...