Completion with no key #2875
-
|
Hey, Here is an example : <?php
namespace App;
class User
{
public function get(string $param): string
{
return $param;
}
}
$user = new User();
$user->
<?php
namespace App;
class User
{
public function get(string $param): string
{
return $param;
}
}
$user = new User();
$user->gWhen adding a first character after the I can reproduce with I wonder if that's an intended behavior to optimize performance or if I miss something. I spent a full afternoon to unsuccessfully search for an answer. (I use neovim 0.11 with up to date lsp-config and nvim-cmp plugins and phpactor 2025.04.17.0) |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
|
If you're using LSP you do not need to use I use https://github.com/hrsh7th/nvim-cmp for completion and I don't have |
Beta Was this translation helpful? Give feedback.
-
|
Do you happen to have a link to your dot files? I'd be happy to take a look. |
Beta Was this translation helpful? Give feedback.
-
|
OMG, found !!! |
Beta Was this translation helpful? Give feedback.


OMG, found !!!
php-mbstring was missing.
Thank you @mamazu & @dantleech for you help.
Glad I was finally able to find the source of the problem. This was driving me crazy.