aboutsummaryrefslogtreecommitdiff
path: root/schema.json
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <mattn.jp@gmail.com>2020-02-16 00:44:39 +0900
committerYasuhiro Matsumoto <mattn.jp@gmail.com>2020-02-16 00:44:39 +0900
commit21c6f5ca619858ff2c9739c9579c31a38384b20d (patch)
treef9c139fd2b05b3be03a5ae7a684c85f01db19e0a /schema.json
parenta0d6d705fd09b674f551e0e6dd273572c0178891 (diff)
downloadvim-lsp-settings-21c6f5ca619858ff2c9739c9579c31a38384b20d.tar.gz
vim-lsp-settings-21c6f5ca619858ff2c9739c9579c31a38384b20d.tar.bz2
vim-lsp-settings-21c6f5ca619858ff2c9739c9579c31a38384b20d.zip
Update README.md
Diffstat (limited to 'schema.json')
-rw-r--r--schema.json10
1 files changed, 5 insertions, 5 deletions
diff --git a/schema.json b/schema.json
index 62aeaca..ab23b42 100644
--- a/schema.json
+++ b/schema.json
@@ -10,8 +10,8 @@
"properties": {
"command": {
"description": "define name of language server",
- "type": "string",
- "pattern": "^[a-zA-Z0-9_-]+$"
+ "pattern": "^[a-zA-Z0-9_-]+$",
+ "type": "string"
},
"config": {
"default": {},
@@ -19,9 +19,9 @@
"type": "object"
},
"disabled": {
+ "default": true,
"description": "disable this server",
- "type": "boolean",
- "default": true
+ "type": "boolean"
},
"requires": {
"default": [],
@@ -33,8 +33,8 @@
"type": "array"
},
"vim-plugin": {
- "default": {},
"additionalProperties": false,
+ "default": {},
"description": "define suggestion for vim-plugin",
"properties": {
"extensions": {