-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Use Vetur for Vue grammar #4014
Changes from 2 commits
610b3ef
3fd4087
1e9eeee
4ee5e13
ae3c3a6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2906,7 +2906,7 @@ Nextflow: | |
extensions: | ||
- ".nf" | ||
filenames: | ||
- "nextflow.config" | ||
- nextflow.config | ||
interpreters: | ||
- nextflow | ||
language_id: 506780613 | ||
|
@@ -4188,7 +4188,7 @@ Scala: | |
color: "#c22d40" | ||
extensions: | ||
- ".scala" | ||
- ".kojo" | ||
- ".kojo" | ||
- ".sbt" | ||
- ".sc" | ||
interpreters: | ||
|
@@ -4856,13 +4856,20 @@ Volt: | |
codemirror_mime_type: text/x-d | ||
language_id: 390 | ||
Vue: | ||
type: markup | ||
type: programming | ||
color: "#2c3e50" | ||
extensions: | ||
- ".vue" | ||
tm_scope: text.html.vue | ||
tm_scope: source.vue | ||
ace_mode: html | ||
codemirror_mode: vue | ||
language_id: 391 | ||
Vue Template: | ||
type: markup | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As this is essentially HTML, it's probably a good idea to group it with HTML(add |
||
tm_scope: text.html.vue-html | ||
ace_mode: html | ||
codemirror_mode: vue | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You'll need a |
||
language_id: 8536085 | ||
Wavefront Material: | ||
type: data | ||
extensions: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
... is happening because you're missing a
codemirror_mime_type: <blah>
entry right about here.