mirror of https://git.tuxpa.in/a/code-server.git
30 lines
778 B
JSON
30 lines
778 B
JSON
|
{
|
||
|
"name": "fsharp",
|
||
|
"displayName": "%displayName%",
|
||
|
"description": "%description%",
|
||
|
"version": "1.0.0",
|
||
|
"publisher": "vscode",
|
||
|
"license": "MIT",
|
||
|
"engines": { "vscode": "*" },
|
||
|
"scripts": {
|
||
|
"update-grammar": "node ../../build/npm/update-grammar.js ionide/ionide-fsgrammar grammar/fsharp.json ./syntaxes/fsharp.tmLanguage.json"
|
||
|
},
|
||
|
"contributes": {
|
||
|
"languages": [{
|
||
|
"id": "fsharp",
|
||
|
"extensions": [ ".fs", ".fsi", ".fsx", ".fsscript" ],
|
||
|
"aliases": [ "F#", "FSharp", "fsharp" ],
|
||
|
"configuration": "./language-configuration.json"
|
||
|
}],
|
||
|
"grammars": [{
|
||
|
"language": "fsharp",
|
||
|
"scopeName": "source.fsharp",
|
||
|
"path": "./syntaxes/fsharp.tmLanguage.json"
|
||
|
}],
|
||
|
"snippets": [{
|
||
|
"language": "fsharp",
|
||
|
"path": "./snippets/fsharp.code-snippets"
|
||
|
}]
|
||
|
}
|
||
|
}
|