Yann Rabiller

Results 38 comments of Yann Rabiller

Still the same for me: `Error from Phpactor: Byte offset 1043 is larger than text length 1032`. Using phpactor master and neovim 0.7. Do you use neovim 0.7 too? My...

@dantleech I'm using `nmap u :call phpactor#UseAdd()` in my `init.vim`. I'm using the RPC plugin indeed. Not sure if it's related, but the interesting thing, is that I added a...

Interestingly, I can't reproduce the bug with another file. :thinking: Edit: actually I can (cursor on CustomHttpException). ```php

I think I found something @dantleech The `$text` variable I receive in `WordAtOffset` seems different than what I have on my disk. If I put it into a file and...

Confirmed. In VS Code I changed the line ending from `CRLF` to `LF` and then it works with the same file.

To reproduce the bug: change the line ending style to CRLF on an editor like VS Code. Then try to import a class in vim.

Thanks for your quick answer @dantleech :) I also use fzf, but my .gitignored files (like my vendor files) are excluded from it. Also, since phpactor is able from `ServerRequestInterface`...

Seems like there is a `class:search` implemented in the standalone version, but not in the vim plugin. I'm trying to dive into this. Even if it doesn't end in the...

Seems like this does the trick for me: ```viml function! ClassSearch() let className = input('Class: ') let classInfo = phpactor#rpc("class_search", { "short_name": className }) if (empty(classInfo)) echo "Class not found"...

TBH, I was so pissed off by Laravel and its aliases (man, I miss Sf so much), I took a week to remove aliases everywhere on every project I could...