php variable autocompletion
When you type a variable in a PHP file with the intelephense PHP Language Server plugin, you get autocompletion of variables in the scope but when you hit enter to select the auto-completion, an additional $
is wrote.
For example, I type $t
it shows me the autocompletion for tree
, I select it and it writes $$tree
instead of $tree
.