-
-
Notifications
You must be signed in to change notification settings - Fork 43
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
Explore 'vscode-css-languageservice' as default parser for all files #92
Milestone
Comments
https://github.com/twbs/bootstrap/blob/master/scss/_variables.scss
|
mrmlnc
changed the title
Explore 'vscode-css-languageservice' as default parser for all files
Explore 'vscode-css-languageservice'/'postcss-scss' as default parser for all files
Nov 22, 2019
mrmlnc
changed the title
Explore 'vscode-css-languageservice'/'postcss-scss' as default parser for all files
Explore 'vscode-css-languageservice' as default parser for all files
Nov 22, 2019
As part of this ticket, we must fix the problem in the - } else if (token[0] === ')' && tokens[pos + 1] && tokens[pos + 1] === ';') {
+ } else if (token[0] === ')' && tokens[pos + 1] && tokens[pos + 1][0] === ';') { |
This was referenced Nov 22, 2019
Merged
Yeah, me and @aeschli would be happy if we can share the parser can fix bug together. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Now the
scss-symbols-parser
package is outdated and has a some bugs. For example, this package does not support@use
and cannot parse correctly the following content from Bootstrap:Previously we switch parser by performance issues. Right now (for me) this is not a important development direction of this plugin.
The text was updated successfully, but these errors were encountered: