Skip to content

Commit 9d3335d

Browse files
authored
feat: add Vue.js syntax highlighting (#1785)
1 parent 4cb9b6a commit 9d3335d

File tree

3 files changed

+1334
-0
lines changed

3 files changed

+1334
-0
lines changed

THIRD-PARTY-LICENSES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,10 @@ The project uses the following third-party libraries or assets
9898
- **Commit**: 0e89ecdb13650dbbe5a1e85b47b2e1530bf2f355
9999
- **License**: MIT License
100100
- **License Link**: https://github.com/samuel-weinhardt/vscode-jsp-lang/blob/0e89ecdb13650dbbe5a1e85b47b2e1530bf2f355/LICENSE
101+
102+
### vuejs-language-tools
103+
104+
- **Source**: https://github.com/vuejs/language-tools
105+
- **Commit**: 68d98dc57f8486c2946ae28dc86bf8e91d45da4d
106+
- **License**: MIT License
107+
- **License Link**: https://github.com/vuejs/language-tools/blob/68d98dc57f8486c2946ae28dc86bf8e91d45da4d/LICENSE

src/Models/TextMateHelper.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public static class GrammarUtility
2626
new ExtraGrammar("source.hx", [".hx"], "haxe.json"),
2727
new ExtraGrammar("source.hxml", [".hxml"], "hxml.json"),
2828
new ExtraGrammar("text.html.jsp", [".jsp", ".jspf", ".tag"], "jsp.json"),
29+
new ExtraGrammar("source.vue", [".vue"], "vue.json"),
2930
];
3031

3132
public static string GetScope(string file, RegistryOptions reg)

0 commit comments

Comments
 (0)