aboutsummaryrefslogtreecommitdiff
path: root/schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'schema.json')
-rw-r--r--schema.json16
1 files changed, 8 insertions, 8 deletions
diff --git a/schema.json b/schema.json
index 3998775..c9ccb91 100644
--- a/schema.json
+++ b/schema.json
@@ -9,9 +9,9 @@
},
"^([a-z0-9_-]+)+$": {
"type": "array",
- "title": "filetype name",
+ "description": "filetype name",
"items": {
- "title": "define command description",
+ "description": "define command description",
"type": "object",
"additionalProperties": false,
"required": [
@@ -20,19 +20,19 @@
],
"properties": {
"command": {
- "title": "define name of language server",
+ "description": "define name of language server",
"type": "string"
},
"requires": {
- "title": "define commands to install this language server",
+ "description": "define commands to install this language server",
"type": "array",
"items": {
"type": "string",
- "title": "executable command name"
+ "description": "executable command name"
}
},
"vim-plugin": {
- "title": "define suggestion for vim-plugin",
+ "description": "define suggestion for vim-plugin",
"type": "object",
"additionalProperties": false,
"properties": {
@@ -40,12 +40,12 @@
"type": "array",
"items": {
"type": "string",
- "title": "file extensions"
+ "description": "file extensions"
}
},
"name": {
"type": "string",
- "title": "plugin identify user/repo"
+ "description": "plugin identify user/repo"
}
}
}