-
Notifications
You must be signed in to change notification settings - Fork 0
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
[CLOSED] Show CSS code hints in SCSS mode. #4551
Comments
Comment by JeffryBooher
|
Comment by RaymondLim
Update: just realize your concern of collecting named flows from single line comments in SCSS files since you don't have it implemented. AFAIK, this is the only thing that is not relied on CodeMirror mode and you just have to fix it in your regular expression. |
Comment by redmunds This looks good, except there is 1 EditorOptionHandlers Unit test failing: should style active line after turning it on
Maybe you just need to merge with master? |
Comment by RaymondLim Thanks Merging with master indeed fixes this unit test failure. |
Comment by RaymondLim
|
Comment by redmunds All test now pass (Win7). Merging. |
Issue by RaymondLim
Sunday Aug 25, 2013 at 00:12 GMT
Originally opened as adobe/brackets#4931
This works for all valid CSS properties except those syntax that are not yet supported in CodeMirror SCSS mode.
eg.
border: { style: solid; }
You won't see property values for border-style when the cursor is afterstyle:
in the example. Instead, you see a list of property names since CodeMirror does not recognize style: as a nested property.RaymondLim included the following code: https://github.com/adobe/brackets/pull/4931/commits
The text was updated successfully, but these errors were encountered: