-
Notifications
You must be signed in to change notification settings - Fork 29.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debugger completion inserted wrong #13655
Comments
October to investigate |
This bottomline issue is the definition of a word in php. Since the repl input is asking the editor model what is the word at a position, and the returned word does not contain the character $ which is wrong. I believe the definition of a word can be changed in the php extension. Assigning to @mousetraps to investigate further. I think @aeschli can help if needed |
@felixfbecker Do you know if this is still an issue? I don't get completions from the PHP Debug extension, should I? |
Haven't tried in a long time, here's the PR: xdebug/vscode-php-debug#71 |
Assuming we have these variables:
I'm typing
$aBoo
into the debug console and want to get completion to$aBoolean
:Notice how the
$
is not highlighted.The debug adapter responds correctly with:
As you can see it even specifies that the completion should be inserted at the beginning of the console.
After hitting enter:
$ is duplicated.
The text was updated successfully, but these errors were encountered: