Add Jupyter language with JSON syntax highlighting

#128495
This commit is contained in:
Rob Lourens 2021-08-06 15:50:58 -07:00
parent 52658e11de
commit accf5ae359
2 changed files with 18 additions and 0 deletions

View file

@ -36,6 +36,16 @@
]
}
],
"grammars": [
{
"language": "jupyter",
"scopeName": "source.jupyter",
"path": "./syntaxes/jupyter.tmLanguage.json",
"embeddedLanguages": {
"source.json": "json"
}
}
],
"notebooks": [
{
"type": "jupyter-notebook",

View file

@ -0,0 +1,8 @@
{
"scopeName": "source.jupyter",
"patterns": [
{
"include": "source.json"
}
]
}