-
Notifications
You must be signed in to change notification settings - Fork 70
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
Missing Colons and Semicolons in completion #37
Comments
The reason that semicolons aren't added is because the package is currently optimized for Sass indented syntax, not SCSS. I would like to fully support both syntaxes in the future, but it will require having two separate syntax definitions in the package that are kept in sync feature-wise. (Pull requests welcome!) Since I haven't had time to implement this (and other features) on my own, I'll work on putting together a roadmap for the package that is perhaps a little easier to work toward collaboratively. Thanks! (this is a duplicate of #10 ) |
Well, is there any way for us to activate the insertion of the semicolon if we don't care about the SASS syntax at all? // Edit // Edit 2 |
This is all a result of seaofcloud's package originally being written to only support the indented For better SCSS support today, you could use a package like https://sublime.wbond.net/packages/SCSS I'd like to completely refactor my plugin, with full separate syntaxes. Finding the time & help to do so is certainly a challenge :) |
Stardard Sublime CSS highlighter adds colons and semicolons as you type in rules, which is VERY convenient. Please add this feature.
Ex:
position: relative;
as you type 'pos' and them hit Enter to complete the word, it should add a colon at the end like 'position:' , same with 'relative;' it should add a semicolon at the end;
ps: Thank you for a great bundle!
The text was updated successfully, but these errors were encountered: