-
-
Notifications
You must be signed in to change notification settings - Fork 593
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
Formatting for sass #1433
Comments
Vue Language Server works with multiple modes. See https://github.com/vuejs/vetur/tree/master/server/src/modes If you install the dependencies in Thanks for your work on SASS! It has been a requested many times for Vetur to add better sass support. |
@octref my fork i already have added a new mode. the only problem is that i need a document object that has this is the class that i currently use to convert text to an object similar to vscodes |
Fixed by #1658. |
Im currently working on making my sass formatter work with this extension, is there a way to get the
TextDocument
Object from vscode ?since i made my formatter in a vscode extension i worked with the
TextDocument
from vscode, right now im looping trough the text two times one time to create an object that is similar to theTextDocument
object and one time to format the code, i could probably rewrite the formatter but i don't want to spend my time doing that since it already works.i could just add formatting for vue files in my extension, but i think it would be nice to have it in this extension, so that the vetur supports everthing to do with vue and the sass extension just supports sass files, i also added hover info for some properties, and im working on a linter all stuff that can also be added to this extension.
The text was updated successfully, but these errors were encountered: