This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
When SQL used within a PHP string, interpolated PHP variables remain unstyled #449
Open
1 of 3 tasks
Prerequisites
Description
Out of the box, VSCode seems to not encounter this particular issue with SQL highlighting within a PHP string. The highlighting seems to interpret the PHP variable as a string, when it probably should fallback to the language of the file / outer scope and check what sort of class it should have - in this particular case, it should be interpreted as a PHP variable.
Also, I might create another issue for the following, but not sure how easy it is to check for this problem:
.
) andselect
, this does not trigger SQL highlighting. I could override the styles and transform them to lowercase, but this might actually be a project's styling convention, to not have the code be screaming at you.Steps to Reproduce
Expected behavior:
$editors should be highlighted/styled like a PHP variable
Screenshot from VSCode
Actual behavior:
$editors is styled like any other plain PHP string.
Screenshot from Atom
Reproduces how often:
100% of the time
Versions
Atom : 1.58.0
Electron: 9.4.4
Chrome : 83.0.4103.122
Node : 12.14.1
apm 2.6.2
npm 6.14.13
node 12.14.1 x64
atom 1.58.0
python
git 2.25.1
Ubuntu 20
Additional Information
It applies the styles of
syntax--source syntax--sql syntax--embedded syntax--php
and takes the form of a text element.It is also worth noting that disabling this package, will correctly display PHP string interpolation.
The text was updated successfully, but these errors were encountered: