vscode-phoenix
vscode-phoenix copied to clipboard
Undefined language contribution
First of all, you are a hero for enabling this syntax support. 👏
Second, there seems to be a bug related to an undefined language contribution. See the screenshot. It doesn't affect the syntax highlighting from what I can tell.
"language" is missing from the package.json file. Here is a sample of the current file:
{
"scopeName": "source.elixir.heex",
"path": "./syntaxes/elixir-heex.json",
"injectTo": [
"source.elixir"
]
}
Below is an example of how to fix it:
{
"language": "elixir",
"scopeName": "source.elixir.heex",
"path": "./syntaxes/elixir-heex.json",
"injectTo": [
"source.elixir"
]
}
I'm not sure if you meant to add elixir as a language. Please let me know if that's the case so I can fix it, and submit a pull request.