SCSS Language Improvements
This extension attempts to fix the SCSS related syntax highlighting issue as described here. The original extension is no longer found in VSCode market because we thought the issue has been fixed. Because the original maintainer is not doing SCSS daily any longer, I'm keeping this project alive while waiting for the issue to be fixed (I'm not holding my breath as the previous fix took years). Usage
Use the color from your color theme. This ensures the missing colors are always correct. This example is in line with my vscode-settings. The issueHave you ever noticed that some properties in your SCSS files are oddly-colored by your syntax highlighter? This small extension solves that issue. Why does this happen in the first place?The words Why isn't this in the real language pack?VSCode takes its SASS language definition directionly from the Atom language definition. There is an issue here about the matter. How does it work?This code change targets specifically those problematic words. This plugin first considers them property names by default, but once they're followed by a curly brace, pseudo-element or pseudo-selector, they resolve to selectors. |