diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-02-16 00:44:39 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-02-16 00:44:39 +0900 |
commit | 21c6f5ca619858ff2c9739c9579c31a38384b20d (patch) | |
tree | f9c139fd2b05b3be03a5ae7a684c85f01db19e0a | |
parent | a0d6d705fd09b674f551e0e6dd273572c0178891 (diff) | |
download | vim-lsp-settings-21c6f5ca619858ff2c9739c9579c31a38384b20d.tar.gz vim-lsp-settings-21c6f5ca619858ff2c9739c9579c31a38384b20d.tar.bz2 vim-lsp-settings-21c6f5ca619858ff2c9739c9579c31a38384b20d.zip |
Update README.md
-rw-r--r-- | schema.json | 10 |
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": { |