ERB support
Is there any way to enable support for .html.erb The only way that I know of is changing the file type to ERB. I wonder if there is a way, to let cursorless treat erb files like html files.
Cursorless uses the document language. You don't need to rename the file: you just need to change language to html.
If you want to do this for all erb files there is a setting in vscode for that. Something like:
"files.associations": {
".html.erb": "html"
}
Unfortunately, this doesn't really solve my problem since I'm using a formatter for ERB files. This means that I would have to switch back and forth between the two file types. Hence, I was wondering if I could tell Cursorless directly to apply the same rules for ERB files.
Thank you for the answer though!
Got it. There is no functionality like that today.
Related to #409