Cyril Mizzi

Results 21 comments of Cyril Mizzi

I like this PR. The project detection was removed from `phpactor` for a while. For example, when I'm using, I don't exit and re-create when switching projects. I just use...

You could take the parent `.git` root repository at this moment ?

I agree with @dantleech for this point of view. But, the solution could simply be to retrieve until latest found `vendor` or `composer.json` file. A loop to the root of...

Hum, the `cwd` is only took when the plugin is created. It is not updated on each buffer change until have this kind of functions : ```vim " Update PHPActor...

This function is not used by the plugin. This is what I do in order to work on multiple projects into a single Vim instance. By default, without this function,...

`phpactor` assumes that when the instance creation is based on the instance working dir. I'm not really happy with that but as the `phpactor` binary can handle a `--working-dir` argument,...

I think it's important that the `omnifunc` and this plugin return same result. If this plugin handles `getcwd` (so `:cd` will change the current call path), `phpactor` needs to do...

``` # bar.coffee ProgressBar = require 'progress' bar = new ProgressBar ':bar', total : 10 stream : process.stderr timer = setInterval -> bar.tick() if bar.complete console.error '\ncomplete\n' clearInterval timer ,...

`laravel-debugbar` works only for the first request. Next, collectors are not refreshed. Your `PR` will made a lot of things better to handle reset directly from a `middleware` in Laravel....

We used (before) GraphiQL for debugging purpose and the schema was broken due to union types (not supported by GraphiQL). So, we moved to [`insomnia`](https://insomnia.rest/) and no problem with schema...