aboutsummaryrefslogtreecommitdiff
path: root/schema.json
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <mattn.jp@gmail.com>2020-01-24 23:03:12 +0900
committerYasuhiro Matsumoto <mattn.jp@gmail.com>2020-01-24 23:03:12 +0900
commit431fb236bfb6dd70b98c6c453a2dc48d780bcb74 (patch)
tree060e8c3503590e3494e8dcc7ae177bfd80759b23 /schema.json
parent6df097286f96be0d4aade9edb9d2390e34a3e070 (diff)
downloadvim-lsp-settings-431fb236bfb6dd70b98c6c453a2dc48d780bcb74.tar.gz
vim-lsp-settings-431fb236bfb6dd70b98c6c453a2dc48d780bcb74.tar.bz2
vim-lsp-settings-431fb236bfb6dd70b98c6c453a2dc48d780bcb74.zip
Should be description
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"
}
}
}