Last change
on this file since 2cb15b0 was ebe0f0d, checked in by Thierry Delisle <tdelisle@…>, 6 years ago |
Added basic language server which now properly communicates with the client
|
-
Property mode
set to
100644
|
File size:
1.5 KB
|
Rev | Line | |
---|
[9452a2c] | 1 | {
|
---|
| 2 | "name": "cforall",
|
---|
| 3 | "version": "0.1.0",
|
---|
[a768220] | 4 | "displayName": "C∀ (C-for-all) Language Support",
|
---|
[9452a2c] | 5 | "description": "Cforall - colorizer, grammar and snippets.",
|
---|
| 6 | "publisher": "uwaterloo",
|
---|
| 7 | "license": "MIT",
|
---|
| 8 | "engines": {
|
---|
| 9 | "vscode": "^1.5.0"
|
---|
| 10 | },
|
---|
[a768220] | 11 | "icon": "images/icon.png",
|
---|
[9452a2c] | 12 | "categories": [
|
---|
[a768220] | 13 | "Programming Languages",
|
---|
[9452a2c] | 14 | "Linters",
|
---|
| 15 | "Other"
|
---|
| 16 | ],
|
---|
[b52abe0] | 17 | "activationEvents": [
|
---|
| 18 | "onLanguage:cforall"
|
---|
| 19 | ],
|
---|
| 20 | "main": "./client/main.js",
|
---|
[9452a2c] | 21 | "contributes": {
|
---|
| 22 | "languages": [
|
---|
| 23 | {
|
---|
| 24 | "id": "cforall",
|
---|
| 25 | "aliases": [
|
---|
| 26 | "C∀",
|
---|
| 27 | "CForAll",
|
---|
[a768220] | 28 | "Cforall",
|
---|
[9452a2c] | 29 | "cforall"
|
---|
| 30 | ],
|
---|
| 31 | "extensions": [
|
---|
[a768220] | 32 | ".cfa",
|
---|
| 33 | ".hfa",
|
---|
| 34 | ".ifa"
|
---|
[9452a2c] | 35 | ],
|
---|
| 36 | "configuration": "./cforall.configuration.json"
|
---|
| 37 | }
|
---|
| 38 | ],
|
---|
| 39 | "grammars": [
|
---|
| 40 | {
|
---|
| 41 | "language": "cforall",
|
---|
[a768220] | 42 | "scopeName": "source.cfa",
|
---|
| 43 | "path": "./syntaxes/cfa.tmLanguage.json"
|
---|
[9452a2c] | 44 | }
|
---|
[ebe0f0d] | 45 | ],
|
---|
| 46 | "configuration": {
|
---|
| 47 | "type": "object",
|
---|
| 48 | "title": "Example configuration",
|
---|
| 49 | "properties": {
|
---|
| 50 | "cforall.maxNumberOfProblems": {
|
---|
| 51 | "scope": "resource",
|
---|
| 52 | "type": "number",
|
---|
| 53 | "default": 100,
|
---|
| 54 | "description": "Controls the maximum number of problems produced by the server."
|
---|
| 55 | },
|
---|
| 56 | "cforall.trace.server": {
|
---|
| 57 | "scope": "window",
|
---|
| 58 | "type": "string",
|
---|
| 59 | "enum": [
|
---|
| 60 | "off",
|
---|
| 61 | "messages",
|
---|
| 62 | "verbose"
|
---|
| 63 | ],
|
---|
| 64 | "default": "off",
|
---|
| 65 | "description": "Traces the communication between VS Code and the language server."
|
---|
| 66 | }
|
---|
[b52abe0] | 67 | }
|
---|
| 68 | }
|
---|
| 69 | },
|
---|
| 70 | "dependencies": {
|
---|
| 71 | "vscode-languageclient": "^4.1.4"
|
---|
| 72 | },
|
---|
| 73 | "devDependencies": {
|
---|
| 74 | "vscode-languageclient": "^4.1.4"
|
---|
[9452a2c] | 75 | }
|
---|
| 76 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.